curl --request POST \
--url https://api.skulabs.com/order/add_note \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"store_id": "507f1f77bcf86cd799439011",
"order_number": "<string>",
"note": "<string>",
"type": "internal"
}
'{
"success": true
}Add an internal or customer-facing note to an order.
curl --request POST \
--url https://api.skulabs.com/order/add_note \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"store_id": "507f1f77bcf86cd799439011",
"order_number": "<string>",
"note": "<string>",
"type": "internal"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Note added
Whether the operation succeeded