Minit Money Enterprise
  • Welcome
  • Introduction
    • What is RaaS?
  • Get Started
  • Dashboard
  • RaaS API
    • API Key
    • Health Check
    • Corridors
      • List all Corridors
      • Corridor Details
      • Payout Methods
      • Payout Requirements
  • Senders
    • New Sender
    • Fetch Details
    • Update Details
    • Delete Sender
    • KYC
  • Beneficiaries
    • New Beneficiary
    • Fetch Details
    • Update Details
    • Delete Beneficiary
    • KYC
  • Quote
    • New Quotes
    • Fetch Quote
  • Transactions
    • New Transaction
    • Fetch Transaction
    • Status
  • Webhooks
    • Subscribe
    • Delete
  • Resources
    • Change log
    • FAQs
    • About
Powered by GitBook
On this page
  1. Transactions

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"
}
PreviousTransactionsNextFetch Transaction

Last updated 1 month ago