Delete a User Note
DELETE /users/:user_id/notes/:note_id/
Example URL
https://system_domain/api/v2/users/123/notes/456/
PATH Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | number | Yes | User ID |
note_id | number | Yes | Note ID |
Response example:
Response example
{
"errors": [
{
"code": "s-204",
"title": "No content",
"details": "Note with id {456} successfully deleted"
}
]
}