Cresium
  1. Webhooks
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
      • 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. Webhooks

Transactions Events - DEPOSIT

When a DEPOSIT event occurs, your registered webhook endpoint will receive a POST request with the following structure:
     {
       "type": "DEPOSIT", 
       "data": { ... }, 
       "retry": 1
     }
In the data field, a transaction object will be sent:
Transaction

Example:
{
                "id": 1425,
                "type": "DEPOSIT",
                "status": "SUCCESS",
                "currencyId": 1,
                "currency": {
                    "symbol": "$",
                    "code": "ARS",
                    "image": "src",
                    "decimals": 2
                },
                "fromId": 262,
                "toId": 1,
                "from": {
                    "id": 262,
                    "type": "ALIAS",
                    "value": "test.alias",
                    "bankName": "BANCO INDUSTRIAL S.A.",
                    "ownerName": "Grimm, Ben",
                    "uuid": "2026531072",
                    "img": "https://cresiums3prod.s3.us-east-1.amazonaws.com/bankImages/defaultBank.svg"
                },
                "to": {
                    "id": 1,
                    "type": "CVU",
                    "value": "0000001700000000000024",
                    "bankName": "Cresium",
                    "ownerName": "Argentum Online Inc",
                    "uuid": "20434035075",
                    "img": "https://cresiums3prod.s3.us-east-1.amazonaws.com/bankImages/defaultBank.svg"
                },
                "companyId": 2,
                "walletId": 1,
                "createdAt": "2025-09-15T19:41:18.146Z",
                "totalAmount": 1420691.99,
                "netAmount": 1412167.84,
                "amounts": [
                    {
                        "id": 2808,
                        "transactionId": 1425,
                        "type": "FEE",
                        "amount": 8524.15,
                        "key": "AR_CREDIT_TAX"
                    },
                    {
                        "id": 2809,
                        "transactionId": 1425,
                        "type": "FEE",
                        "amount": 0,
                        "key": "AR_IIBB_TAX"
                    },
                    {
                        "id": 2810,
                        "transactionId": 1425,
                        "type": "NET_BASE",
                        "amount": 1412167.84,
                        "key": null
                    }
                ],
                "externalId": "898976",
                "collaboratorId": null,
                "collaborator": null,
                "tag": null,
                "updatedAt": "2025-04-18T19:37:57.834Z",
                "bulkTransactionId": null,
                "billPayment": null,
                "description": null,
                "signatureRequest": null
            },
            {
                "id": 1420,
                "type": "DEPOSIT",
                "status": "SUCCESS",
                "currencyId": 1,
                "currency": {
                    "symbol": "$",
                    "code": "ARS",
                    "image": "src",
                    "decimals": 2
                },
                "fromId": 262,
                "toId": 1,
                "from": {
                    "id": 262,
                    "type": "ALIAS",
                    "value": "test.alias",
                    "bankName": "BANCO INDUSTRIAL S.A.",
                    "ownerName": "Grimm, Ben",
                    "uuid": "2026531072",
                    "img": "https://cresiums3prod.s3.us-east-1.amazonaws.com/bankImages/defaultBank.svg"
                },
                "to": {
                    "id": 1,
                    "type": "CVU",
                    "value": "0000001700000000000024",
                    "bankName": "Cresium",
                    "ownerName": "Argentum Online Inc",
                    "uuid": "20434035075",
                    "img": "https://cresiums3prod.s3.us-east-1.amazonaws.com/bankImages/defaultBank.svg"
                },
                "companyId": 2,
                "walletId": 1,
                "createdAt": "2025-04-10T21:48:26.288Z",
                "totalAmount": 1283450.75,
                "netAmount": 1275750.05,
                "amounts": [
                    {
                        "id": 2796,
                        "transactionId": 1420,
                        "type": "FEE",
                        "amount": 7700.7,
                        "key": "AR_CREDIT_TAX"
                    },
                    {
                        "id": 2797,
                        "transactionId": 1420,
                        "type": "FEE",
                        "amount": 0,
                        "key": "AR_IIBB_TAX"
                    },
                    {
                        "id": 2798,
                        "transactionId": 1420,
                        "type": "NET_BASE",
                        "amount": 1275750.05,
                        "key": null
                    }
                ],
                "externalId": "9219192",
                "collaboratorId": null,
                "collaborator": null,
                "tag": null,
                "updatedAt": "2025-04-10T21:48:28.170Z",
                "bulkTransactionId": null,
                "billPayment": null,
                "description": null,
                "signatureRequest": null
            }
Modified at 2025-09-23 15:17:55
Previous
Configuring Webhooks
Next
Transaction
Built with