FlamPix Gateway API
    • ๐Ÿ“œ API Overview
    • โš ๏ธ API Base URL Migration Notice โš ๏ธ
    • Docs
      • ๐Ÿ”‘ Authentication & HMAC Signing
      • ๐Ÿช Webhook
      • ๐Ÿงต Deposit Status Strings
      • ๐Ÿšฆ API Limits
    • Raiz
      • Create Deposit
        POST
      • Get Deposit Status
        GET
      • Get User Info
        GET
      • Health Check
        GET
      • Transaction Status Update
    • Schemas
      • Customer
      • DepositRequest
      • DepositResponse
      • UserInfoResponse
      • WebhookPayload

    DepositResponse

    {
        "depositId": "33504022-daeb-4ddf-96f2-fc15aa4e6a52",
        "status": "awaiting_payment",
        "amount": {
            "grossInCents": 0,
            "feeInCents": 0,
            "netInCents": 0
        },
        "pix": {
            "qrCopyPaste": "string",
            "qrImageUrl": "http://example.com"
        },
        "feeBreakdown": {
            "percentInCents": 0,
            "fixedInCents": 0,
            "gatewayInCents": 0,
            "totalInCents": 0
        },
        "createdAt": "2019-08-24T14:15:22.123Z"
    }
    Built with