Contactos - Operaciones Básicas
Crear un nuevo contacto
Contactos - Operaciones Básicas
Contactos - Gestión de Items
Contactos - Gestión de Tags
Contactos - Estados
Etiquetas (Tags)
Facturas
Contactos - Operaciones Básicas
Crear un nuevo contacto
Crear un nuevo contacto
POST
/
contact
curl --request POST \
--url https://api.fint.app/api/v1/contact \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"externalReference": "<string>",
"name": "<string>",
"lastName": "<string>",
"documentType": "DNI",
"documentNumber": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"address": "<string>",
"country": "<string>",
"metadata": {},
"payerContact": {
"name": "<string>",
"lastName": "<string>",
"documentType": "DNI",
"documentNumber": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"address": "<string>",
"country": "<string>"
},
"tagGroup": {
"name": "<string>"
},
"tags": [
{
"name": "<string>"
}
],
"sendPortalInvite": true
}'
{
"id": 123
}
Authorizations
Body
application/json
Response
201
application/json
Contacto creado con éxito
The response is of type object
.
curl --request POST \
--url https://api.fint.app/api/v1/contact \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"externalReference": "<string>",
"name": "<string>",
"lastName": "<string>",
"documentType": "DNI",
"documentNumber": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"address": "<string>",
"country": "<string>",
"metadata": {},
"payerContact": {
"name": "<string>",
"lastName": "<string>",
"documentType": "DNI",
"documentNumber": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"address": "<string>",
"country": "<string>"
},
"tagGroup": {
"name": "<string>"
},
"tags": [
{
"name": "<string>"
}
],
"sendPortalInvite": true
}'
{
"id": 123
}