PATCH
/
contact
/
:contactId
curl --request PATCH \
  --url https://api.fint.app/api/v1/contact/:contactId \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "lastName": "<string>",
  "email": "jsmith@example.com",
  "address": "<string>",
  "documentType": "DNI",
  "documentNumber": "<string>",
  "country": "<string>",
  "birthDate": "<string>",
  "age": 123,
  "phoneNumber": "<string>",
  "mobileNumber": "<string>",
  "reminderEnabled": true,
  "metadata": {},
  "activeStatusId": 123
}'
{
  "message": "Contact updated successfully"
}

Authorizations

x-api-key
string
header
required

Path Parameters

contactId
number
required

Body

application/json

Response

200
application/json

Contacto actualizado con éxito por ID

The response is of type object.