| Campo | Tipo | Requerido | Descripcion |
|---|---|---|---|
amount | number | Si | Monto del pago |
userAddressId | number | Si | ID de la direccion del proveedor/acreedor |
status | enum | Si | Estado inicial del pago |
description | string | No | Descripcion/concepto |
paymentMethod | enum | No | Metodo de pago: CASH, TRANSFER, ECHEQ, OTHER |
paymentDate | string | No | Fecha en que se realizo el pago |
fileUrl | string | No | URL del archivo/comprobante adjunto |
toId | number | No | ID de la Address destino |
createdAt | string | No | Fecha de creacion (default: ahora) |
expiresAt | string | No | Fecha de vencimiento |
externalId | string | No | ID externo para correlacion con sistema del partner |
receiverEmail | string (email) | No | Email del proveedor/acreedor |
curl --location --request POST 'https://api.develop.cresium.app/v3/payment/' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"amount": 0,
"userAddressId": 0,
"description": "string",
"status": "PROCESSING",
"paymentMethod": "CASH",
"paymentDate": "string",
"fileUrl": "string",
"toId": 0,
"createdAt": "string",
"expiresAt": "string",
"externalId": "string",
"receiverEmail": "user@example.com"
}
]'{
"data": {
"payments": [
{
"id": 0,
"toId": 0,
"to": {
"id": 0,
"type": "CVU",
"value": "string",
"bankName": "string",
"ownerName": "string",
"img": "string",
"uuid": "string"
},
"amount": 0,
"externalId": "string",
"erpReferenceId": "string",
"description": "string",
"status": "PROCESSING",
"createdAt": "string",
"expiresAt": "string",
"fileUrl": "string",
"retentionsUrl": "string",
"transaction": {
"id": 0,
"type": "DEPOSIT",
"status": "PREVIEW",
"externalId": "string",
"currencyId": 0,
"currency": {
"symbol": "string",
"code": "ARS",
"image": "string",
"decimals": 0
},
"fromId": 0,
"toId": 0,
"from": {
"id": 0,
"type": "CVU",
"value": "string",
"bankName": "string",
"ownerName": "string",
"img": "string",
"uuid": "string"
},
"to": {
"id": 0,
"type": "CVU",
"value": "string",
"bankName": "string",
"ownerName": "string",
"img": "string",
"uuid": "string"
},
"companyId": 0,
"collaboratorId": 0,
"collaborator": {
"id": 0,
"firstName": "string",
"lastName": "string",
"image": "string",
"email": "string",
"role": "OWNER",
"phone": "string",
"birthDate": "2019-08-24T14:15:22.123Z",
"status": "CREATED"
},
"walletId": 0,
"tag": "RENTAL",
"createdAt": "2019-08-24T14:15:22.123Z",
"updatedAt": "2019-08-24T14:15:22.123Z",
"processedAt": "2019-08-24T14:15:22.123Z",
"totalAmount": 0,
"netAmount": 0,
"bulkTransactionId": 0,
"amounts": [
{
"id": 0,
"transactionId": 0,
"type": "FEE",
"amount": 0,
"key": "string"
}
],
"recipients": [
{
"type": "EMAIL",
"value": "string"
}
],
"billPayment": {
"companyName": "string",
"debtIdentifier": "string",
"expirationDate": "string"
},
"sendingDate": "2019-08-24T14:15:22.123Z",
"depositAddress": {
"id": 0,
"type": "CVU",
"value": "string",
"externalId": "string",
"currencyId": 0,
"currency": {
"symbol": "string",
"code": "ARS",
"image": "string",
"decimals": 0
},
"bankProvider": {
"name": "BIND",
"img": "string"
},
"wallet": {
"id": 0,
"balance": 0,
"lockedBalance": 0,
"investedBalance": 0,
"availableBalance": 0,
"currency": {
"symbol": "string",
"code": "ARS",
"image": "string",
"decimals": 0
},
"companyId": 0
},
"hasEcheqs": true
},
"description": "string",
"rawData": null
},
"currencyId": 0,
"userAddress": {
"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"
}
],
"email": "string",
"phone": "string"
},
"currency": {
"symbol": "string",
"code": "ARS",
"image": "string",
"decimals": 0
},
"paymentMethod": "CASH",
"paymentDate": "2019-08-24T14:15:22.123Z",
"collaborator": {
"id": 0,
"firstName": "string",
"lastName": "string",
"image": "string",
"email": "string",
"role": "OWNER",
"phone": "string",
"birthDate": "2019-08-24T14:15:22.123Z",
"status": "CREATED"
},
"companyIntegration": {
"id": 0,
"companyId": 0,
"key": "KONVEX",
"enabled": true,
"url": "string",
"metadata": null,
"img": "string",
"name": "string",
"lastSync": "string"
}
}
],
"hasMore": true,
"cursor": 0,
"pageSize": 0
}
}