RemitPro - API International Remittance
  1. Webhook
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
        • Transaction Status
        • Transaction List
        • Transaction Detail
    • Onbording Member
      • Business
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
    • Wallet
      • Overview
      • Own Wallet
      • List Wallet Member
      • Detail Wallet Member
    • Virtual Account
      • Create Virtual Account
      • Top Up Simulation
    • Webhook
      • Overview
      • Webhook Category
        GET
      • Create Webhook URL
        POST
      • Webhook URL List
        GET
      • Update
        PUT
      • Deactive
        DELETE
  1. Webhook

Webhook Category

Developing
GET
/api/v1/partner/master/webhook
Webhook Category is used to define the type of notification or event delivered by the system through a webhook. These categories allow the receiving party to easily identify the context of the data and process it accordingly.
Available webhook categories:
Webhook CategoryDescription
Risk Statusused to notify about risk assessment results related to users.
Quote Statusused to inform changes in the status of transaction quotes.
Recipient Statusused to provide updates regarding recipient status in the system.
KYC/KYB Statusused to communicate the results of identity verification for individuals (KYC) or businesses (KYB).
Transaction Statusused to send updates on transaction status (e.g., pending, completed, failed)
VA Statusused to notify about changes in Virtual Account status.

Request

Header Params

Responses

🟢200Success
application/json
Body

🟠400Invalid Data
🟠401Unauthorized
🟠401Token Expired
🟠404Data Not Found
🟠401Invalid Account
🟠400Validation Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/partner/master/webhook' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}'
Response Response Example
200 - Success
{
    "status": 200,
    "serviceStatus": "2001401",
    "titleCode": "success",
    "title": "Success",
    "detail": "Processed successfully",
    "responseTime": "2025-10-03T10:06:10.337+00:00",
    "data": [
        {
            "id": "535a8d78-cdf9-429c-a920-0646a059afac",
            "name": "Risk Status"
        },
        {
            "id": "0baae371-740c-4456-b401-a9117e6cceed",
            "name": "Quote Status"
        },
        {
            "id": "e9449910-737a-4c5e-944a-e3ff7e602bad",
            "name": "Recipient Status"
        },
        {
            "id": "31b39413-00f8-4c57-8aee-c309011dc17f",
            "name": "KYC/KYB Status"
        },
        {
            "id": "63fb1ee9-d975-4821-b624-78392d634d4e",
            "name": "Transaction Status"
        },
        {
            "id": "e2c327b1-a751-480a-8f2a-0a3bc7478f44",
            "name": "VA Status"
        }
    ]
}
Modified at 2025-10-03 10:42:40
Previous
Overview
Next
Create Webhook URL
Built with