Fetch Transaction

Get transaction details

POST /transactions/{transaction_id}

Description

To retrieve the current transaction details, send a POST request with the {transaction_id}.

Response

{
    "sender_uid": "12345",
    "beneficiary_uid": "12345",
    "quote_uid": "12345",
    "corridor_uid" : "12345",
    "payout_method_uid": "12345",
    "dst_amount": 100,
    "status": "PROCESSING",
    "details": [
     {
      "field_id": "5e4eaf5f-80c7-4281-9817-ad6c646eacb8",
      "field_name": "source_of_funds",
      "value": "Gift",
     },
     {
      "field_id": "7a99f286-0da9-4de0-96c6-337bc703c36b",
      "field_name": "beneficiary_bank_code",
      "value": "6a2hfr",
     }
    ]
}

Last updated