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.eyJzdWIiOiIxNTI2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzUzMjY2MjE1LCJleHAiOjE3NTU4NTgyMTUsImp0aSI6IjNmZjkzOTBiLWJhYTUtNGNmMC1hNmIzLThjNDk1ZjE4MTA0ZiJ9.D8Ji0s6xg2qp82RNCORN9qN2Ph8y7pVsEzD5XGeXMvY
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/"c3a06aa7c59361c6cfb85933b31ed77d"
cache-control: max-age=0, private, must-revalidate
x-request-id: 4ac0cb08-ae75-4510-907a-8e0b8ff0f3a9
x-runtime: 0.013532
content-length: 154
Body
{
"note": {
"id": 2,
"admin": {
"id": 1526,
"admin": true,
"image": null,
"title": "Marge Dickens"
},
"comment": "This is a note",
"created_at": "2025-07-23T10:23:35.401Z"
}
}