Create a Note
POST
/admin/notes
Notes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.medusa-commerce.com/admin/notes' \
--header 'Content-Type: application/json' \
--data-raw ''
Response Response Example
200 - Example 1
{
"note": {
"id": "note_01G8TM8ENBMC7R90XRR1G6H26Q",
"resource_type": "order",
"resource_id": "order_01G8TJSYT9M6AVS5N4EMNFS1EK",
"value": "This order must be fulfilled on Monday",
"author_id": "usr_01G1G5V26F5TB3GPAPNJ8X1S3V",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"metadata": {
"car": "white"
},
"author": {
"id": "usr_01G1G5V26F5TB3GPAPNJ8X1S3V",
"email": "user@example.com",
"first_name": "Levi",
"last_name": "Bogan",
"api_token": null,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"role": "member",
"metadata": {
"car": "white"
}
}
}
}
Request
Body Params application/json
Responses
Modified at 2023-10-10 11:56:36