Cria ou atualiza um usuário com perfil de cliente na base de dados.
POST
/chatapi/1.0/api/v2/users/save/client
curl \
--request POST 'https://api.neppo.com.br/chatapi/1.0/api/v2/users/save/client' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"id": 42,
"userName": "string",
"phone": "string",
"displayName": "string",
"email": "string",
"birthDate": "string",
"active": true,
"cpf": "string",
"formal": true,
"priority": 42,
"externalCode": "string",
"attributes": [
{
"description": "string",
"value": "string"
}
]
}'
Request examples
{
"id": 42,
"userName": "string",
"phone": "string",
"displayName": "string",
"email": "string",
"birthDate": "string",
"active": true,
"cpf": "string",
"formal": true,
"priority": 42,
"externalCode": "string",
"attributes": [
{
"description": "string",
"value": "string"
}
]
}
Response examples (200)
{}