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
  • API Reference (V1)
    • Authentication
      • Generate Token
      • Refresh Token
    • 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 (IDN)
        • Overview
        • Countries
        • Countries by Id
        • States
        • States by Id
        • City
        • City by Id
        • District
        • District by Id
        • Sub District
        • Sub District by Id
    • Transaction
      • 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
        • Quote List
        • Quote Detail
        • Enquire Quotes
    • Onbording Member
      • Business
        • Sender List
          GET
        • Create Member
          POST
        • Update Sender
          PUT
        • Deactive
          DELETE
        • Reactive
          PATCH
        • Sender Detail
          GET
        • History List
          GET
      • Personal
        • Create Sender
        • Update Sender
        • Deactive
        • Reactive
        • Sender Detail
        • Sender List
        • History List
  1. Business

History List

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

Request

Path 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/payouts/remittances/senders/businesses/5d1953a2-f35a-496e-8ea0-3e91ab0cf680/histories' \
--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-17T09:35:57.655+00:00",
    "data": [
        {
            "id": "39a4a72d-8e88-47d4-83d7-e7f57a4cb4c2",
            "activity": "DO_REACTIVE",
            "createdAt": "2025-09-17T09:35:50Z",
            "createdBy": "(API_PARTNER)  PT ABC"
        },
        {
            "id": "9b87f7ca-105a-4934-b611-a3511ae2207c",
            "activity": "DO_DEACTIVE",
            "createdAt": "2025-09-17T09:35:29Z",
            "createdBy": "(API_PARTNER)  PT ABC"
        },
        {
            "id": "d52fa99f-21c1-4b41-8e43-b6b2bd9a79db",
            "activity": "DO_CREATE",
            "createdAt": "2025-09-17T08:05:19Z",
            "createdBy": "(API_PARTNER) PT ABC"
        }
    ],
    "pagination": {
        "limit": 10,
        "page": 1,
        "totalRecords": 3,
        "totalPages": 1,
        "links": {
            "self": "https://api-gateway-dev.remitpro.asia/api/v1/partner/payouts/remittances/senders/businesses/5d1953a2-f35a-496e-8ea0-3e91ab0cf680/histories?page=1&limit=10"
        }
    }
}
Modified at 2025-09-19 07:44:34
Previous
Sender Detail
Next
Create Sender
Built with