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

History List

Developing
GET
/api/v1/partner/members/businesses/{member_id}/histories
This endpoint is used to retrieve a record of all historical activities related to a specific member. The response may include details such as member creation, updates, status changes (active, deactivated, reactivated), and other modifications performed over time. If no history is available for the given member, the system will return a Data Not Found error response.

Request

Path Params

Query Params

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/members/businesses//histories?page=1&limit=5' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}' \
--header 'X-User-Key: {{userKey}}'
Response Response Example
200 - Success
{
    "status": 200,
    "serviceStatus": "2001701",
    "titleCode": "success",
    "title": "Success",
    "detail": "Processed successfully",
    "responseTime": "2025-09-19T10:04:56.818+00:00",
    "data": [
        {
            "id": "61720b1b-4368-4762-a9ca-8aca6e479fbd",
            "activity": "DO_REACTIVE",
            "createdAt": "2025-09-19T09:57:56Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "214fa33c-b6a1-444a-883e-23c5db95842f",
            "activity": "DO_DEACTIVE",
            "createdAt": "2025-09-19T09:57:08Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "56662cd7-1e86-4b52-aa17-6cb19e0d1711",
            "activity": "DO_UPDATE",
            "createdAt": "2025-09-19T09:56:41Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "9e15e0af-e9ae-4225-9002-f4757ef17066",
            "activity": "DO_UPDATE_STATUS",
            "createdAt": "2025-09-19T09:56:33Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "89fe3d0e-85ce-4b85-8c6f-affb92cc9b23",
            "activity": "DO_CREATE",
            "createdAt": "2025-09-19T09:46:22Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        }
    ],
    "pagination": {
        "limit": 10,
        "page": 1,
        "totalRecords": 5,
        "totalPages": 1,
        "links": {
            "self": "https://api-gateway-dev.remitpro.asia/api/v1/partner/payouts/remittances/recipients/personals/64107dbd-305e-45e7-adc1-ed7674c94927/histories?page=1&limit=10"
        }
    }
}
Modified at 2025-10-14 08:47:12
Previous
Member Detail
Next
Create Member
Built with