Notes
Authorizations
Path parameters
resource_idstringRequired
Responses
200
Successful Response
application/json
404
Not found
422
Validation Error
application/json
get
GET /api/notes/{resource_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 1,
"created": "2025-06-27T12:13:49.327Z",
"heeler_id": "text",
"email": "text",
"note": "text"
}
]
Authorizations
Path parameters
resource_idstringRequired
Body
notestringRequired
Responses
200
Successful Response
application/json
404
Not found
422
Validation Error
application/json
post
POST /api/notes/{resource_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"note": "text"
}
{
"ok": true,
"message": "text"
}
Authorizations
Path parameters
note_idintegerRequired
Responses
200
Successful Response
application/json
404
Not found
422
Validation Error
application/json
delete
DELETE /api/notes/{note_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"ok": true,
"message": "text"
}
Was this helpful?