RemitPro - API International Remittance
  1. Transaction
RemitPro - API International Remittance
  • Getting Strated Guide
    • 1. Overview
    • 2. High Level Flow
    • 3. Supported Corridors
    • 4. Authorization & Scope
    • 5. Handle Error
    • 6. Signature
    • 7. API Host
    • 8. Doc Change Log
  • API Reference (V1)
    • Authentication
      • Generate Token
        POST
      • Refresh Token
        POST
    • Master Data
      • Onboarding
        • Overview
        • Id Type Personal
        • Id Types Business
        • Business Classification
        • Business Industry
        • Nature of Business
        • Business Entity
        • Document Types Personal
        • Document Types Business
        • Education
        • Gender
        • Marital Status
        • Nationalities
        • Occupation
        • Purpose Account
        • Salutation
        • User Position
      • Area
        • Overview
        • Countries
        • Countries by Id
        • States
        • States by Id
        • City
        • City by Id
        • District
        • District by Id
        • Sub District
        • Sub District by Id
      • Transaction
        • Overview
        • Bank
        • Bank Branch
        • Bank Account Type
        • Business Classification
        • Business Industry
        • Nature of Business
        • Business Entity
        • Identity Types
        • Education
        • Gender
        • Marital Status
        • Nationalities
        • Occupation
        • Phone Prefix
        • Purpose of Payment
        • Recipient of Relationship
        • Source of Income
        • User Position
        • Work Status
    • Payout Cross Border
      • Sender
        • Business
          • Create Sender
          • Update Sender
          • Deactive
          • Reactive
          • Sender Detail
          • Sender List
          • History List
        • Personal
          • Create Sender
          • Update Sender
          • Deactive
          • Reactive
          • Sender Detail
          • Sender List
          • History List
      • Recipient
        • Overview
        • Business
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
        • Personal
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
      • Quotes
        • Enquire Quotes
        • Quote List
        • Quote Detail
      • Transaction
        • Create Transaction
          POST
        • Transaction List
          GET
        • Quote Detail
          GET
    • Onbording Member
      • Business
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
    • Wallet
      • Overview
      • Own Wallet
      • List Wallet Member
      • Detail Wallet Member
    • Virtual Account
      • Create Virtual Account
      • Top Up Simulation
    • Webhook
      • Overview
      • Create/Update Status
      • KYC/KYB
      • Wallet
      • Virtual Account
  1. Transaction

Create Transaction

Developing
POST
/api/v1/partner/payouts/remittances/quotes
Create Transaction endpoint is used to initiate a remittance transaction from a sender to a recipient.
Before performing a transaction, you must first retrieve the senderId, recipientId, and quoteId. These values are required to ensure the transaction has valid references for the sender details, recipient details, and applicable exchange rates and fees.
Additionally, there are two methods available when calling the recipient payload:
1.
Using recipientId – Simply reference a recipient that has already been registered in the system. GET /api/v1/partner/payouts/remittances/recipients/businesses/{recipient_id}
2.
Using Recipient Form directly in the transaction payload – Provide recipient details (such as user information, business information, address details, bank details, identification detail, and additional data) directly in the payload without prior registration. Ensure that all submitted data complies with the required validation rules refer to: GET /api/v1/partner/payouts/remittances/recipients/businesses/forms/{recipient_country_code}
The system will validate all submitted data, including compliance checks and regulatory restrictions.
If all information is valid, the transaction will be created with an initial status of Pending until the payment or settlement process is Completed.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Invalid Data
🟠401Unauthorized
🟠401Token Expired
🟠404Data Not Found
🟠401Invalid Account
🔴500Internal Server Error
🟠404Resource Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/partner/payouts/remittances/quotes' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}' \
--header 'X-User-Key: {{userKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "recipientType": "BUSINESS",
    "recipientCountryCode": "USA",
    "recipientCurrencyCode": "USD",
    "receivingAmount": "12"
}'
Response Response Example
200 - Success
{
    "status": 200,
    "serviceStatus": "2001701",
    "titleCode": "success",
    "title": "Success",
    "detail": "Processed successfully",
    "responseTime": "2025-09-19T07:20:47.199+00:00",
    "data": {
        "id": "4d4b15b3-a6b1-47f8-ba00-f3482efcac2f",
        "ownershipStatus": "ROOT",
        "ownershipId": "93cffe3b-effc-494a-a1f7-3ed04c7f75ce",
        "sourceCurrencyCode": "USD",
        "recipientType": "BUSINESS",
        "recipientCountryCode": "USA",
        "recipientCurrencyCode": "USD",
        "receivingAmount": {
            "amount": "12.00",
            "currencyCode": "USD"
        },
        "fxRate": {
            "value": "0.990000000"
        },
        "sendingAmount": {
            "amount": "12.12",
            "currencyCode": "USD"
        },
        "adminFee": {
            "amount": "5.02",
            "currencyCode": "USD"
        },
        "paymentAmount": {
            "amount": "17.14",
            "currencyCode": "USD"
        },
        "status": "ACTIVE",
        "isActive": true,
        "createdAt": "2025-09-19T07:20:47Z",
        "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media",
        "expiredAt": "2025-09-19T16:20:46Z"
    }
}
Modified at 2025-09-25 09:11:06
Previous
Quote Detail
Next
Transaction List
Built with