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

New Sender

Create a new Sender

POST /senders

Description

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

Body

Name
Type
Description

...

...

...

{
    "first_name": "John",
    "last_name": "V",
    "country": "QAT",
    "phone_number": "...",
    "daily_limit": 100,
    "monthly_limit": 10000 
}

Response

{
    "sender_uid": "4abc8e5d-2bc1-4c2e-994f-c8b0eed4769b",
    "first_name": "John",
    "middle_name": null,
    "last_name": "V",
    "country": "QAT",
    "phone_number": "...",
    "daily_limit": 100,
    "monthly_limit": 10000,
    "daily_limit_remaining": null,
    "monthly_limit_usage": null,
    "kyc": ...
}
PreviousSendersNextFetch Details

Last updated 1 month ago