Update Profile Note By Note Id

Updates a profile note based on profile id and note id.

SecuritybearerToken
Request
path Parameters
profileId
required
string

Id of a profile.

Example: 9a7ae0c8-f473-4ab6-8dbb-03fc061630cc
noteId
required
string

Id of a note.

Example: 047ae398-7639-40af-911e-cc214cf3045c
Request Body schema: application/json
body
string or null

The body of the note to be added. Limited to 1000 characters

isArchived
boolean
Responses
200
400
401
403
404
409

Conflict

put/compliance/kyc-protect/profiles/{profileId}/notes/{noteId}
Request samples
application/json
{
  • "body": "testing",
  • "isArchived": true
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "body": "string",
  • "isArchived": true,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdById": 0,
  • "createdBy": "string",
  • "modifiedAt": "2019-08-24T14:15:22Z",
  • "modifiedById": 0,
  • "modifiedBy": "string"
}