This is a POST request, submitting data to an API via the request body. This request submits JSON data, and the data is reflected in the response.A successful POST request typically returns a 200 OK or 201 Created response code.
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Body Params multipart/form-data
Responses
🟢200Success
application/json
Body
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST 'https://connect.dispatchable.com/notes/api/v1/note' \
--header'Accept: application/json' \
--header'Accept: application/json' \
--header'Authorization: Bearer <token>' \
--form'type="internal"' \
--form'noteable_type="load"' \
--form'noteable_uuid="c22ee54d-0c03-482d-9540-616b053a0cb4"' \
--form'content="<p>This is not a drill</p>"'