RemitPro - API International Remittance
  1. Transaction
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. Pre-Integration Steps
    • 9. 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
        • Phone Prefix
        • Monthly Income
      • 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
        • Overview
        • 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
          POST
        • Transaction Status
          GET
        • Transaction List
          GET
        • Transaction Detail
          GET
    • Onbording Member
      • Overview
      • Business
        • Get Business Document
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
      • Personal
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
    • Wallet
      • Overview
      • Own Wallet
      • Wallet Member List
      • Wallet Member Detail
      • Get Own Wallet Histories
      • Get Member Wallet Histories
    • Virtual Account
      • Create Virtual Account
      • Virtual Account List
      • Virtual Account Detail
      • Top Up Simulation
    • Webhook
      • Overview
      • Webhook Category
      • Webhook URL Submission
      • Get Webhook URL List
      • Update
      • Deactive
  1. Transaction

Transaction Status

Developing
GET
/api/v1/partner/payouts/remittances/transactions/{transaction_id}/statuses
The remittance process is asynchronous, meaning the transaction is processed in the background and may not be completed immediately. Partners are advised to check the transaction status periodically to obtain the latest updates.

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/transactions/72287b7b-726e-424a-a888-06797f3fc3d2/statuses' \
--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-10-02T12:22:19.476+00:00",
    "data": {
        "id": "72287b7b-726e-424a-a888-06797f3fc3d2",
        "code": "REMIT2510ELFJ0209",
        "quoteId": "98e0369b-f3f2-43c3-8e01-2f133cdb278c",
        "quoteCreatedAt": "2025-10-02T09:55:25Z",
        "ownershipStatus": "ROOT",
        "ownershipId": "93cffe3b-effc-494a-a1f7-3ed04c7f75ce",
        "sourceCurrencyCode": "USD",
        "recipientType": "BUSINESS",
        "recipientCountryCode": "DEU",
        "recipientCurrencyCode": "EUR",
        "receivingAmount": {
            "amount": "5.00",
            "currencyCode": "EUR"
        },
        "fxRate": {
            "value": "0.837601550"
        },
        "sendingAmount": {
            "amount": "5.97",
            "currencyCode": "USD"
        },
        "adminFee": {
            "amount": "10.01",
            "currencyCode": "USD"
        },
        "paymentAmount": {
            "amount": "15.98",
            "currencyCode": "USD"
        },
        "senderData": {
            "id": "0b0d0ce5-41f6-480c-b280-85c7ae8370b7",
            "senderType": "BUSINESS",
            "identificationDetails": {},
            "userInformation": {},
            "businessInformation": {},
            "mainAddress": {},
            "domicileAddress": {}
        },
        "recipientData": {
            "id": "a5e75752-109d-44cb-b11e-c11b6f4de9dc",
            "recipientType": "BUSINESS",
            "recipientCountryCode": "DEU",
            "recipientCountry": "GERMANY",
            "recipientCurrencyCode": "EUR",
            "recipientDetails": {
                "bankDetails": {},
                "userInformation": {},
                "businessInformation": {}
            }
        },
        "createdAt": "2025-10-02T09:55:59Z",
        "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media",
        "status": "COMPLETED",
        "transferAt": "2025-10-02T09:56:02Z",
        "isCompleted": true,
        "completedAt": "2025-10-02T10:20:02Z",
        "isFailed": false
    }
}
Modified at 2025-10-23 08:30:57
Previous
Create Transaction
Next
Transaction List
Built with