New Transaction

Create a transaction

POST /transactions

Description

Submit a transaction with sender and beneficiary details for a specific corridor and payout method.

Body

Name
Type
Description

....

...

...

...

...

...

{
    "sender_uid": "12345",
    "beneficiary_uid": "12345",
    "quote_uid": "12345",
    "corridor_uid" : "12345",
    "payout_method_uid": "12345",
    "dst_amount": 100,
    "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",
     }
    ]
}

Response

{
  "transaction_id": "txn_001",
  "status": "Created"
}

Last updated