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/610/notes
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNTI2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzU4MDEyNTAxLCJleHAiOjE3NjA2MDQ1MDEsImp0aSI6IjFhNWRjYTU2LTI3MzEtNDAzYi1hMGFjLTQzMDAyOWNhMDVjNiJ9.Uwh_Ihm7An7KK821xpl3g29aVaiC5soDXNtfI6qCZVk
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/"fd8b0e646e9d5e67d199e2dad3aac26e"
cache-control: max-age=0, private, must-revalidate
x-request-id: b947cad9-e877-4b09-bb74-4781572a575f
x-runtime: 0.009976
content-length: 153
Body
{
"note": {
"id": 2,
"admin": {
"id": 1526,
"admin": true,
"image": null,
"title": "Denis Barton"
},
"comment": "This is a note",
"created_at": "2025-09-16T08:48:21.821Z"
}
}