https://deficopay.com
Home
Link
Multiple Menus
Multiple Menus
  • Link1
  • Link2
Home
Link
Multiple Menus
Multiple Menus
  • Link1
  • Link2
  1. Home
  • Merchant Notification Webhooks
  • Authentication & Request Signing
  • Get Merchant Balance
  • Deposit API Deficopay.com
    • Get Merchant's Auth Token by Merchant's API key
      POST
    • Initiate Deposit with Full Customer Info
      POST
    • Initiate Deposit Khipu Argentina
      POST
    • Initiate Deposit BBVA Argentina
      POST
    • Initiate Deposit GALICIA Argentina
      POST
    • Initiate Deposit Banco ICBC Argentina
      POST
    • Initiate Deposit Banco MACRO Argentina
      POST
    • Initiate Deposit Banco NACION Argentina
      POST
    • Initiate Deposit Banco SUPERVIELLE Argentina
      POST
    • Initiate Deposit Rapipago Argentina Barcode Flow
      POST
    • Initiate Deposit Rapipago Argentina Redirect Flow
      POST
    • Initiate Deposit Mercado Pago QR Argentina
      POST
    • Initiate Deposit Otros Bancos / Billeteras QR Argentina
      POST
    • Initiate Deposit MODO QR Argentina
      POST
  • Payout API Deficopay.com
    • Initiate Payout Argentina (Bank Transfer)
      POST
  • Merchant API Deficopay.com
    • Get merchant balances
      GET
  • Get Fiat Deposit Status with Signature
    GET
Home
Link
Multiple Menus
Multiple Menus
  • Link1
  • Link2
Home
Link
Multiple Menus
Multiple Menus
  • Link1
  • Link2
  1. Home

Get Fiat Deposit Status with Signature

GET
https://pay.deficopay.com/api/v1/deposits/fiat/{{deficopay_transaction_id}}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Responses

🟢200Success
application/json
Body

🟠404Record not found
🟠422Standartized Error Response
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://pay.deficopay.com/api/v1/deposits/fiat/{{deficopay_transaction_id}}' \
--header 'X-API-Signature: {{x_api_signature}}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
Response Response Example
200 - Success
{
  "type": "object",
  "properties": {
    "trace_id": {
      "type": "string",
      "format": "uuid",
      "description": "Trace ID of the request"
    },
    "data": {
      "type": "object",
      "properties": {
        "success": {
          "type": "boolean",
          "example": true
        },
        "data": {
          "type": "object",
          "properties": {
            "merchant_transaction_id": {
              "type": "string",
              "format": "uuid",
              "description": "Merchant-provided transaction ID"
            },
            "deficopay_transaction_id": {
              "type": "string",
              "format": "uuid",
              "description": "Generated transaction ID on Deficopay side"
            },
            "status": {
              "type": "string",
              "enum": [
                "pending",
                "completed",
                "cancelled",
                "failed"
              ],
              "description": "Current status of the transaction"
            },
            "amount": {
              "type": "string",
              "example": "30.00 R$",
              "description": "Formatted amount including currency symbol"
            },
            "currency": {
              "type": "string",
              "example": "BRL"
            },
            "updated_at": {
              "type": "string",
              "format": "date-time",
              "example": "2025-05-14T11:37:05.000000Z"
            },
            "payment_details": {
              "type": "object",
              "description": "Additional payment details (e.g., QR code)",
              "properties": {
                "qrCode": {
                  "type": "string",
                  "description": "QR code for PIX if applicable",
                  "example": "00020126850014br.gov.bcb.pix2563..."
                }
              },
              "required": []
            }
          },
          "required": [
            "merchant_transaction_id",
            "deficopay_transaction_id",
            "status",
            "amount",
            "currency",
            "updated_at"
          ]
        }
      },
      "required": [
        "success",
        "data"
      ]
    }
  },
  "required": [
    "trace_id",
    "data"
  ]
}
Modified at 2025-05-21 12:31:38
Previous
Get merchant balances
Built with