RemitPro - API International Remittance
  1. Onboarding
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
          GET
        • Id Types Business
          GET
        • Business Classification
          GET
        • Business Industry
          GET
        • Nature of Business
          GET
        • Business Entity
          GET
        • Document Types Personal
          GET
        • Document Types Business
          GET
        • Education
          GET
        • Gender
          GET
        • Marital Status
          GET
        • Nationalities
          GET
        • Occupation
          GET
        • Purpose Account
          GET
        • Salutation
          GET
        • User Position
          GET
      • 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
        • Transaction Status
        • Transaction List
        • Transaction Detail
    • Onbording Member
      • 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
      • Detail Wallet Member
      • Wallet Histories
    • Virtual Account
      • Create Virtual Account
      • Virtual Account List
      • Virtual Account Detail
      • Top Up Simulation
    • Webhook
      • Overview
      • Webhook Category
      • Create Webhook URL
      • Webhook URL List
      • Update
      • Deactive
  1. Onboarding

Id Type Personal

Developing
GET
/api/v1/partner/master/onboard/personal/id-types
This endpoint provides a list of available personal identification types that can be used during the onboarding or registration process. The returned data ensures consistency and standardization when capturing member identification details.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

🟠400Invalid Data
🟠400Invalid Data
🟠401Unauthorized
🟠404Resource not found
🟠401Token Expired
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/partner/master/onboard/personal/id-types?page=1&limit=5' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}'
Response Response Example
200 - Success
{
    "status": 200,
    "serviceStatus": "2001400",
    "titleCode": "success",
    "title": "Success",
    "detail": "Processed successfully",
    "responseTime": "2025-09-15T08:44:00",
    "data": [
        {
            "id": "450510a3-2b57-4dfb-9757-d061ed262c77",
            "name": "NRIC",
            "clientRegexValidation": "/^[a-zA-Z0-9]*$/",
            "serverRegexValidation": "/^[a-zA-Z0-9]*$/"
        },
        {
            "id": "9b97cee2-78fa-4a9a-a58e-f1a480ff5737",
            "name": "Passport",
            "clientRegexValidation": "/^[a-zA-Z0-9]*$/",
            "serverRegexValidation": "/^[a-zA-Z0-9]*$/"
        },
        {
            "id": "b51b5323-71f7-4103-8a22-88aa3315f745",
            "name": "Work Pass",
            "clientRegexValidation": "/^[a-zA-Z0-9]*$/",
            "serverRegexValidation": "/^[a-zA-Z0-9]*$/"
        },
        {
            "id": "d8716033-4132-4e67-850a-b0f3e4b7b328",
            "name": "Employee Pass",
            "clientRegexValidation": "/^[a-zA-Z0-9]*$/",
            "serverRegexValidation": "/^[a-zA-Z0-9]*$/"
        },
        {
            "id": "fb8b20c0-cfa0-415d-8e86-ac7d1be9f8f8",
            "name": "Student Pass",
            "clientRegexValidation": "/^[a-zA-Z0-9]*$/",
            "serverRegexValidation": "/^[a-zA-Z0-9]*$/"
        }
    ],
    "pagination": {
        "limit": 20,
        "page": 1,
        "totalRecords": 5,
        "totalPages": 1,
        "links": {
            "self": "https://api-gateway-dev.remitpro.asia/api/v1/partner/master/onboard/personal/id-types?page=1&limit=20",
            "last": "https://api-gateway-dev.remitpro.asia/api/v1/partner/master/onboard/personal/id-types?page=1&limit=20"
        }
    }
}
Modified at 2025-09-16 04:33:38
Previous
Overview
Next
Id Types Business
Built with