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
  • Test Scenario
  • API Reference (V1)
    • Authentication
      • Generate Token
      • Refresh Token
    • Master Data
      • Onboarding
        • Information
        • 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 (IDN)
        • Information
        • Countries
        • Countries by Id
        • States
        • States by Id
        • States by Id Copy
  1. Onboarding

Education

Developing
GET
/api/v1/partner/master/onboard/education/{country-code}
This endpoint provides a list of education levels that can be selected during the onboarding or registration process. The data uses the ISO 3 country code format (e.g., IDN for Indonesia, USA for the United States) to differentiate per country. The available education levels may vary depending on the local education system and standards.

Request

Path Params

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/education/IDN, USA, etc.?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-15T09:48:22",
    "data": [
        {
            "id": "110c2175-e14a-4b3f-8483-c742ff37c0ad",
            "name": "SD (Sekolah Dasar)"
        },
        {
            "id": "14373d9c-da6e-4fe2-b4dc-5a13510840e2",
            "name": "SMP (Sekolah Menengah Pertama)"
        },
        {
            "id": "4cbaff57-63a6-41e6-a6da-89fd73c1601c",
            "name": "Diploma II (D2)"
        },
        {
            "id": "591de906-d2e4-4bfe-81ef-aa3e375472cd",
            "name": "SMA (Sekolah Menengah Atas) / Sederajat"
        },
        {
            "id": "7d64ad7e-eb63-48cd-90d4-bfc670bf076e",
            "name": "Magister (S2)"
        },
        {
            "id": "8fd7d270-602f-4e19-b80c-7daf277f3ad1",
            "name": "Doktor (S3)"
        },
        {
            "id": "9b131188-5066-40ac-91ce-3c4b34ae8a65",
            "name": "Tidak Sekolah"
        },
        {
            "id": "c5749c37-491e-457a-b75d-8c30be596eec",
            "name": "Diploma I (D1)"
        },
        {
            "id": "c6197b6e-c4a6-4d27-b17c-4c5804ad34b8",
            "name": "Diploma III (D3)"
        },
        {
            "id": "f1404233-714d-45f6-bd5b-73a5a279cd29",
            "name": "Sarjana (S1)"
        }
    ],
    "pagination": {
        "limit": 20,
        "page": 1,
        "totalRecords": 10,
        "totalPages": 1,
        "links": {
            "self": "https://api-gateway-dev.remitpro.asia/api/v1/partner/master/onboard/education?page=1&limit=20",
            "last": "https://api-gateway-dev.remitpro.asia/api/v1/partner/master/onboard/education?page=1&limit=20"
        }
    }
}
Modified at 2025-09-16 05:03:14
Previous
Document Types Business
Next
Gender
Built with