Notes

Get Resource Notes By Id

get
Authorizations
Path parameters
resource_idstringRequired
Responses
200
Successful Response
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"
  }
]

Create Resource Note

post
Authorizations
Path parameters
resource_idstringRequired
Body
notestringRequired
Responses
200
Successful Response
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"
}

Delete Resource Note

delete
Authorizations
Path parameters
note_idintegerRequired
Responses
200
Successful Response
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?