Contactos - Operaciones Básicas
Contactos - Gestión de Items
Contactos - Gestión de Tags
Contactos - Estados
Etiquetas (Tags)
Facturas
Contactos - Operaciones Básicas
Actualizar contacto por ID
Actualizar detalles de contacto por ID
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
Path Parameters
Body
application/json
Response
200
application/json
Contacto actualizado con éxito por ID
The response is of type object
.
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"
}
Assistant
Responses are generated using AI and may contain mistakes.