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/610/notes

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNTI2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQ4NTE2NTMwLCJleHAiOjE3NTExMDg1MzAsImp0aSI6ImU4YmY2YWJlLTdhMTQtNDZhNC1hY2MzLWM0MTBhM2Y4YWZhYiJ9.m2994Cf_ZcfbLMdabR7uZ-drHEqrWJLMvw5NkvpIGho
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/"a4e9badfab4074936eb158fc08c3867f"
cache-control: max-age=0, private, must-revalidate
x-request-id: 85e67b32-6c5e-49eb-857a-14b2616d94c1
x-runtime: 0.008111
content-length: 154

Body

{
  "note": {
    "id": 2,
    "admin": {
      "id": 1526,
      "admin": true,
      "image": null,
      "title": "Catalina Jast"
    },
    "comment": "This is a note",
    "created_at": "2025-05-29T11:02:10.753Z"
  }
}