uuid (CUIT/CUIL) para la company, lo retorna sin modificarlo.| Campo | Tipo | Requerido | Descripcion |
|---|---|---|---|
uuid | string | Si | Identificador unico del contacto (CUIT/CUIL sin guiones) |
name | string | No | Nombre o razon social del contacto |
email | string | No | Email del contacto |
phone | string | No | Telefono del contacto |
tags | array | No | Etiquetas: SUPPLIER, EMPLOYEE, etc. |
displayName | string | No | Nombre para mostrar (alias) |
{
"id": 1,
"name": "Proveedor SA",
"uuid": "30123456789",
"addresses": [...],
"email": "contacto@proveedor.com",
"phone": "+5491112345678"
}curl --location --request POST 'https://api.develop.cresium.app/v3/user-address/' \
--header 'Content-Type: application/json' \
--data-raw '{
"addressId": 0,
"uuid": "string",
"email": "string",
"phone": "string",
"phoneCountryCode": "AR",
"name": "string",
"tags": [
"PROVIDER"
],
"displayName": "string"
}'{
"data": {
"id": 0,
"name": "string",
"uuid": "string",
"description": "string",
"ranking": 0,
"addresses": [
{
"id": 0,
"type": "CVU",
"value": "string",
"bankName": "string",
"ownerName": "string",
"img": "string",
"uuid": "string",
"displayName": "string"
}
],
"email": "string",
"phone": "string",
"defaultAddressId": 0,
"defaultAddress": {
"id": 0,
"type": "CVU",
"value": "string",
"bankName": "string",
"ownerName": "string",
"img": "string",
"uuid": "string",
"displayName": "string"
},
"companyIntegration": {
"id": 0,
"companyId": 0,
"key": "KONVEX",
"enabled": true,
"url": "string",
"metadata": null,
"img": "string",
"name": "string",
"lastSync": "string"
},
"tags": [
"PROVIDER"
],
"displayName": "string"
}
}