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. Beneficiaries

New Beneficiary

Create a new Beneficiary

POST /beneficiaries

Description

Add a beneficiary with basic details such as name, country, and phone number without linking them to a specific corridor, sender or payout method. This endpoint enables the creation of a beneficiary profile, setting daily and monthly limits, and facilitating future transactions.

Body

Name
Type
Description

...

...

...

...

...

...

{
    "first_name": "Ben",
    "last_name": "T",
    "country": "QAT",
    "phone_number": "...",
    "daily_limit": 100,
    "monthly_limit": 10000 
}

Response

{
    "beneficiary_uid": "eb872fce-b5d8-4225-b407-fcdbe686db02",
    "first_name": "Ben",
    "middle_name": "",
    "last_name": "T",
    "country": "QAT",
    "phone_number": "...",
    "daily_limit": 100,
    "monthly_limit": 10000,
    "kyc": ...
}
PreviousBeneficiariesNextFetch Details

Last updated 1 month ago