Edit a person's data
Request
ENDPOINT
/person/PERSON_KEY/personal_dataMETHOD
PATCHPath Params
Field | Type | Description | Characters |
---|---|---|---|
PERSON_KEY * | UUID | Unique identifier of the person | 36 |
Request Body
{
"name": "Mateus da Silva",
"date_of_birth": "1995-05-01",
"profession": "programer",
"mother_name": "Maria de Jesus",
"father_name": "João dos Santos",
"birth_place": "Taguatinga",
"spouse_name": "Luis dos anjos",
"is_pep": true,
"revenue_amount": 100.52,
"onboarding_key": "bc90744e-4f9a-42b1-9410-d5fa3c183fa8"
}
BODY PARAMS
Field | Type | Description | Characters |
---|---|---|---|
name | string | Full name | - |
date_of_birth | string | Birth date, in the format YYYY-MM-DD | date |
profession | string | Profession | - |
mother_name | string | Mother's name | - |
father_name | string | Father's name | - |
birth_place | string | Place of birth | - |
spouse_name | string | Spouse's name | - |
is_pep | Boolean | Declaration if the person is a PEP (Politically Exposed Person) (http://www.portaldatransparencia.gov.br/download-de-dados/pep). | boolean |
revenue_amount | number | Monthly income | - |
onboarding_key | string | Key used for anti-fraud validation | uuidv4 |
Response
STATUS
204Response Body
{}
STATUS
4XXResponse Body
{
"title": "titulo",
"description": "description in English",
"translation": "description in Portuguese",
"code": "codigo"
}
HTTP Code | QI Codecode | Titletitle | Descriptiondescription | Translationtranslation |
---|---|---|---|---|
404 | OBD000019 | Not found | Person not found | Pessoa não encontrada. |
403 | OBD000073 | Unauthorized | User does not have permission to add or modify persons to this domain | Usuário não tem permissão para adicionar ou modificar pessoas a este domínio. |