Method: POST
Content-Type: application/json
Description
Creates a note in Centerbase and links it to an existing item. Can be accomplished with other, more generic endpoints, but this simplifies the process.
Request
- session-id - The authorization session ID from the Login
- parent-id - The ID of the item to link the note to
- note-text - The text to set on the newly created note
Request Body Sample
{
"session-id": "42ed2ab4-06ba-4803-8d0a-445af8bf3140",
"parent-id": "21430b59-906d-4ec1-88ea-6f127493b386",
"note-text":"I love using the Centerbase API."
}
Response
- error-code - If an error occurred, the error code returned
- error-message - If an error occurred, the text of the error
- item-id - The ID of the newly created note
Response Sample
{
"error-code": 0, "error-message": null,
"item-id": "2a949141-7b30-4b82-ae7a-6ca17ec5d6f5"
}