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
name
string
lastName
string
email
string
address
string
documentType
enum<string>
Available options:
DNI,
CUIT,
CUIL,
CDI,
LE,
LC,
CI Extranjera,
Pasaporte,
CI Policía Federal,
Certificado de Migración,
RUT,
Otro
documentNumber
string
country
string
birthDate
string
age
number
phoneNumber
string
mobileNumber
string
reminderEnabled
boolean
metadata
object

Informacion adicional que luego se puede consumir y llegara en los webhooks

activeStatusId
number

Id del estado activo del contacto, con esta opcion podemos activar/desactivar un contacto, los status por defecto son 1 activo y 2 inactivo, luego se pueden agregar mas estados customizables con otro nombre que representen esos estados.

Response

200
application/json
Contacto actualizado con éxito por ID
message
string
required