Create an internal note for a profile
Notes
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/605/notes
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNTA1Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYwOTUwNDY4LCJleHAiOjE3NjM1NDI0NjgsImp0aSI6ImZjZWFlM2E0LWEyZTItNGIwMC1hM2M3LTdiN2JjMDg2NDdhYiJ9.dSAKDf5AqTF_az2k5DgKVuWCc3MWATAAHE1f8-C-PDI
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/"d9b76389e9d1153ddab2720e89069da9"
cache-control: max-age=0, private, must-revalidate
x-request-id: f7a916e3-ed9b-4d66-830a-2c777f4a5ed1
x-runtime: 0.007675
content-length: 155
Body
{
"note": {
"id": 2,
"admin": {
"id": 1505,
"admin": true,
"image": null,
"title": "Buddy Schuster"
},
"comment": "This is a note",
"created_at": "2025-10-20T08:54:28.648Z"
}
}