| Parametro | Tipo | Descripcion |
|---|---|---|
fromDate | string (ISO 8601) | Fecha inicio del rango de busqueda |
toDate | string (ISO 8601) | Fecha fin del rango de busqueda |
types | array | Filtrar por tipos: DEPOSIT, WITHDRAWAL, YIELD, etc. |
tags | array | Filtrar por etiquetas: SALARY, SUPPLIER, SERVICE, etc. |
states | array | Filtrar por estados: SUCCESS, PENDING, PROCESSING, etc. |
externalId | string | Buscar por ID externo |
nameAmountFilter | string | Buscar por nombre o monto |
cursor | number | ID para paginacion (cursor-based) |
pageSize | number | Cantidad de resultados por pagina (default: 10) |
sendingFromDate | string | Fecha inicio de envio programado |
sendingToDate | string | Fecha fin de envio programado |
scheduledTransactions | boolean | Incluir solo transacciones programadas |
cursor en la respuesta{
"transactions": [...],
"pageSize": 10,
"cursor": 12345,
"hasMore": true,
"maxItems": 100
}curl --location --request GET 'https://api.develop.cresium.app/v3/transaction/search?fromDate&toDate&externalId&sendingFromDate&sendingToDate&scheduledTransactions&types&tags&states&orderBy&nameAmountFilter&cursor&pageSize&depositAddressIds'{
"data": {
"transactions": [
{
"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,
"signatureRequest": {
"collaborator": {
"id": 0,
"firstName": "string",
"lastName": "string",
"image": "string",
"email": "string",
"role": "OWNER",
"phone": "string",
"birthDate": "2019-08-24T14:15:22.123Z",
"status": "CREATED"
},
"signerCollaborator": {
"id": 0,
"firstName": "string",
"lastName": "string",
"image": "string",
"email": "string",
"role": "OWNER",
"phone": "string",
"birthDate": "2019-08-24T14:15:22.123Z",
"status": "CREATED"
}
}
}
],
"pageSize": 0,
"cursor": 0,
"hasMore": true
}
}