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
        • Information
        • 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)
        • Information
        • 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
        • Information
        • Business
          • Recipient Form
            GET
          • Create
            POST
          • Update
            PUT
          • Deactive
            DELETE
          • Reactive
            PATCH
          • Recipient Detail
            GET
          • Recipient List
            GET
          • History List
            GET
        • Personal
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
  1. Business

History List

Developing
GET
/api/v1/partner/payouts/remittances/recipient/businesses/{business_id}/histories
This endpoint is used to retrieve a record of all historical activities related to a specific recipient. The response may include details such as recipient creation, updates, status changes (active, deactivated, reactivated), and other modifications performed over time. If no history is available for the given recipeint, 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/payouts/remittances/recipient/businesses/5d1953a2-f35a-496e-8ea0-3e91ab0cf680/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-19T04:32:43.751+00:00",
    "data": [
        {
            "id": "86d3f5ef-802b-4e8c-8693-4aae1224796d",
            "activity": "DO_REACTIVE",
            "createdAt": "2025-09-19T03:54:20Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "26ed5e74-3c0e-4eb4-9f62-f10b75609274",
            "activity": "DO_DEACTIVE",
            "createdAt": "2025-09-19T03:51:34Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "080a6d1a-2697-4f16-bd2b-c5b3b8f9e69e",
            "activity": "DO_UPDATE",
            "createdAt": "2025-09-19T03:44:23Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "bbdeda8a-ca80-473b-b969-2680f7730631",
            "activity": "DO_UPDATE_STATUS",
            "createdAt": "2025-09-19T03:43:51Z",
            "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
        },
        {
            "id": "7646beb1-7d7d-4fbb-b40d-0c7436f1d58a",
            "activity": "DO_CREATE",
            "createdAt": "2025-09-12T02:20:31Z",
            "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/businesses/6a653804-dee0-4f8f-8a07-b92bd852cf50/histories?page=1&limit=10"
        }
    }
}
Modified at 2025-09-19 04:34:34
Previous
Recipient List
Next
Recipient Form
Built with