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/624/notes
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNTQyIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzMDIyMjIzLCJleHAiOjE3NjU2MTQyMjMsImp0aSI6ImRlNTU0Y2UyLTc2YWYtNDRkOS04MGVlLWNjNzBkMDM0ZDk3YiJ9.FQTH2p6lQtGCRWWcbpjdLtUTGIGAd9vuFn0aDsjLdwk
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/"e3e2d0bb98d347a682dac65940423703"
cache-control: max-age=0, private, must-revalidate
x-request-id: a52860b0-d99f-40ae-9f67-dcf3a3da3ad0
x-runtime: 0.008111
content-length: 155
Body
{
"note": {
"id": 2,
"admin": {
"id": 1542,
"admin": true,
"image": null,
"title": "Mitzie Volkman"
},
"comment": "This is a note",
"created_at": "2025-11-13T08:23:43.647Z"
}
}