Notes

Create an internal note for a profile

POST create note

Endpoint

POST /api/v1/profiles/:profile_id/notes

Parameters

Name Description
note[comment] required Note comment

Request

Route

POST /api/v1/profiles/624/notes

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNTQ2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzNjI2NDAxLCJleHAiOjE3NjYyMTg0MDEsImp0aSI6IjFjNmIyYTlhLWIwN2EtNDNmOC1hMjU4LTE4MzcwODBhMzU0ZCJ9.76No6VOIs8JnT4FeKAxphGTf7hnHmEvKK6DkHQg0EOw
Host: example.org
Cookie: 

Body

{
  "note": {
    "comment": "This is a note"
  }
}

Response

Simulated Response

Status

200

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"601bd5219e076111166a056fd71419df"
cache-control: max-age=0, private, must-revalidate
x-request-id: 9e4f149c-03b5-4fd2-8190-538d490dcf66
x-runtime: 0.010662
content-length: 154

Body

{
  "note": {
    "id": 2,
    "admin": {
      "id": 1546,
      "admin": true,
      "image": null,
      "title": "Erik Bergnaum"
    },
    "comment": "This is a note",
    "created_at": "2025-11-20T08:13:21.799Z"
  }
}