RemitPro - API International Remittance
  1. Onbording Member
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. Pre-Integration Steps
    • 9. 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
        • Phone Prefix
        • Monthly Income
      • 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
        • Overview
        • 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
        • Transaction Status
        • Transaction List
        • Transaction Detail
    • Onbording Member
      • Overview
      • Business
        • Get Business Document
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
      • Personal
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
    • Wallet
      • Overview
      • Own Wallet
      • Wallet Member List
      • Wallet Member Detail
      • Get Own Wallet Histories
      • Get Member Wallet Histories
    • Virtual Account
      • Create Virtual Account
      • Virtual Account List
      • Virtual Account Detail
      • Top Up Simulation
    • Webhook
      • Overview
      • Webhook Category
      • Webhook URL Submission
      • Get Webhook URL List
      • Update
      • Deactive
  1. Onbording Member

Overview

Before calling the member endpoints, there are several prerequisite endpoints that must be parsed first. The purpose is to obtain required values that will be used as input for those endpoints. These values typically consist of ID information from keys within a JSON object sent via POST, PATCH, or PUT methods, or values for path parameters used with other methods.
📌
For example, in the request body of the Create member endpoint (/api/v1/partner/members/businesses), there is a key named genderId, which contains an ID value representing a gender type (e.g., 23718861-42ec-4af7-bcf1-1e0de8ff5d3f for Female).ent
Therefore, data mapping must take place before the endpoint integration is implemented. It is highly recommended that developers perform a mapping process by duplicating the relevant RemitPro master data endpoints, so that the integration process runs more efficiently — as all required master data are already stored within the Partner’s database.
The master data used for the member endpoints come from the Master > Onboarding and Master > Area categories.

Create Member/Update Member#

Used in the request body. The list of related master data includes:
1.
Get Countries /api/v1/partner/master/general/countries)
2.
Countries by Id /api/v1/partner/master/general/countries/{country_id}
3.
Get State /api/v1/partner/master/area/state/idn
4.
Get State by ID /api/v1/partner/master/area/state/idn/{state_id}
5.
Get City /api/v1/partner/master/area/city/idn/{state_id}
6.
Get City by ID /api/v1/partner/master/area/city/idn/{state_id}/{city_id}
7.
Get District /api/v1/partner/master/area/district/idn/{state_id}/{city_id}
8.
Get District by ID /api/v1/partner/master/area/district/idn/{state_id}/{city_id}/{district_id}
9.
Get Sub District /api/v1/partner/master/area/sub-district/idn/{state_id}/{city_id}/{distict_id}
10.
Get Sub District /api/v1/partner/master/area/sub-district/idn/{state_id}/{city_id}/{distict_id}
11.
Get Sub District by ID /api/v1/partner/master/area/sub-district/idn/{state_id}/{city_id}/{distict_id}/{sub_district_id}
12.
Get Nationalities /api/v1/partner/master/onboard/nationalities
13.
Get Phone Prefix /api/v1/partner/master/onboard/phone-prefix
14.
Get Monthly Income /api/v1/partner/master/onboard/monthly-income
15.
Get User Position /api/v1/partner/master/onboard/user-position
16.
Get Occupation /api/v1/partner/master/onboard/occupation
17.
Get Marital Status /api/v1/partner/master/onboard/marital-status
18.
Get Education /api/v1/partner/master/onboard/education/{country-code}
19.
Get Id Type Personal /api/v1/partner/master/onboard/personal/id-types
20.
Get Id Type Business /api/v1/partner/master/onboard/business/id-types
21.
Get Business Classification /api/v1/partner/master/onboard/business-classification
22.
Get Business Industry /api/v1/partner/master/onboard/business-industry
23.
Get Nature of Business /api/v1/partner/master/onboard/nature-of-business/{id_business_industry}
24.
Get Business Entity /api/v1/partner/master/onboard/business-entity
25.
Get Purpose Account /api/v1/partner/master/onboard/purpose-account
26.
Get Salutation /api/v1/partner/master/onboard/salutation
27.
Get Sender /api/v1/partner/master/onboard/gender

Deactivate Member/Reactivate Member/ Get Member Detail/Get Member History#

Member ID is sent through the path parameter.
Member ID result from the 200 (Success) response of the Create Member endpoint
/api/v1/partner/members/businesses/ for Business type
/api/v1/partner/members/personals/ for Personal type
Modified at 2025-11-05 10:26:25
Previous
Transaction Detail
Next
Get Business Document
Built with