Create Profile Note

Adds a note to a profile then Returns the details of the added note.

SecuritybearerToken
Request
path Parameters
profileId
required
string

Id of a profile.

Example: 9a7ae0c8-f473-4ab6-8dbb-03fc061630cc
Request Body schema: application/json
body
string or null

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

Responses
201
400
401
403
404
409

Conflict

post/compliance/kyc-protect/profiles/{profileId}/notes
Request samples
application/json
{
  • "body": "The body of the note to be added. Limited to 1000 characters"
}
Response samples
application/json
{
  • "id": "c3966c5f-576e-4770-902b-eaab894b83d7",
  • "body": "testing",
  • "isArchived": false,
  • "createdAt": "2023-08-08T07:32:06.4989594Z",
  • "createdById": 101562008,
  • "createdBy": "Amol",
  • "modifiedAt": "2023-08-08T07:32:06.4989594Z",
  • "modifiedById": 101562008,
  • "modifiedBy": "Amol",
  • "correlationId": "f447fa87-d538-4ccb-9bac-43084d840a12"
}