Cresium
  1. V3 - Partner
Cresium
  • Cresium - V3 Partners
    • API
      • Auth Information for V3 API Partners
      • V3 - Health
        • Health check
      • V3 - Transaction
        • Get Transaction data
        • Search transactions
        • Make a transfer
        • Confirm a transaction
        • Reverse a deposit transaction
      • V3 - BankAddress
        • Get Address
      • V3 - CompanyFeature
        • Get Company Features
        • Update Feature Enabled State
      • V3 - Rate
        • Get TNA rate
      • V3 - DepositAddress
        • Update Deposit Address
        • Create Deposit Address
      • V3 - Partner
        • Search partner transactions
          GET
      • V3 - Auth
        • Generate change password ID for partner user
      • V3 - CompanyTax
        • Upsert Company Tax
      • V3 - Balance
        • Get all wallets for Company
    • Webhooks
      • Auth Information for Webhooks
      • Configuring Webhooks
      • Transactions Events - DEPOSIT
    • Schemas
      • Transaction
  1. V3 - Partner

Search partner transactions

GET
/v3/partner/transactions

Request

Query Params

Responses

🟢200OK
application/json
Successful response
Body

🟠401Unauthorized
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.develop.cresium.app/v3/partner/transactions?fromDate&toDate&sendingFromDate&sendingToDate&scheduledTransactions&types&tags&states&orderBy&nameAmountFilter&cursor&pageSize'
Response Response Example
200 - Example 1
{
    "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:22Z",
                    "status": "CREATED"
                },
                "walletId": 0,
                "tag": "RENTAL",
                "createdAt": "2019-08-24T14:15:22Z",
                "updatedAt": "2019-08-24T14:15:22Z",
                "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:22Z",
                "description": "string",
                "signatureRequest": {
                    "collaborator": {
                        "id": 0,
                        "firstName": "string",
                        "lastName": "string",
                        "image": "string",
                        "email": "string",
                        "role": "OWNER",
                        "phone": "string",
                        "birthDate": "2019-08-24T14:15:22Z",
                        "status": "CREATED"
                    },
                    "signerCollaborator": {
                        "id": 0,
                        "firstName": "string",
                        "lastName": "string",
                        "image": "string",
                        "email": "string",
                        "role": "OWNER",
                        "phone": "string",
                        "birthDate": "2019-08-24T14:15:22Z",
                        "status": "CREATED"
                    }
                }
            }
        ],
        "pageSize": 0,
        "cursor": 0,
        "hasMore": true
    }
}
Modified at 2025-10-16 13:22:07
Previous
Create Deposit Address
Next
Generate change password ID for partner user
Built with