RemitPro - API International Remittance
  1. Personal
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
  • Test Scenario
  • 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
        • Information
        • Sender
          • Business
            • Create Sender
            • Update Sender
            • Deactive
            • Reactive
            • Sender Detail
            • Sender List
            • History List
          • Personal
            • Create Sender
              POST
            • Update Sender
              PUT
            • Deactive
              DELETE
            • Reactive
              PATCH
            • Sender Detail
              GET
            • Sender List
              GET
            • History List
              GET
  1. Personal

Deactive

Developing
DELETE
/api/v1/partner/payouts/remittances/senders/businesses/{sender_id}
This endpoint is used to deactivate a sender account in the system. Once a sender is marked as deactivated:
Any transaction request that references this sender’s data will be automatically rejected by the system.
The system will return a specific error response indicating that the sender is inactive and therefore cannot be used in any transaction process.
If you need to allow transactions again for the same sender, you must explicitly reactivate the sender. This can be done by calling the /reactive endpoint, which will restore the sender’s status to active and re-enable the ability to perform transactions.

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

🟠400Invalid Data
🟠401Unauthorized
🟠401Token Expired
🟠400Update Not Allowed
🟠404Data Not Found
🟠401Invalid Account
🟠400Validation Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/api/v1/partner/payouts/remittances/senders/businesses/7d5453b3-8f6e-415e-91a5-bdca3f8a4f3a' \
--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:15:31.921+00:00",
    "data": {
        "id": "3c061c71-7c92-4dee-b665-4cfb4f64feba",
        "senderType": "PERSONAL",
        "status": "INACTIVE",
        "isActive": false,
        "ownershipStatus": "ROOT",
        "ownershipId": "93cffe3b-effc-494a-a1f7-3ed04c7f75ce",
        "identificationDetails": {
            "typeId": "93a603a6-6446-44f1-8971-6c7316aadf0f",
            "typeName": "Voter's photo ID card",
            "idNumber": "1234567890123490",
            "issueCountryCode": "IDN",
            "issueCountry": "Indonesia",
            "issueDate": "2020-12-19",
            "expiredDate": "2028-01-12",
            "issueState": "DKI Jakarta",
            "issueCity": "Jakarta Selatan",
            "issuePlace": "Jakarta Selatan",
            "issueAuthority": "Disdukcapil"
        },
        "userInformation": {
            "firstName": "Adriana",
            "middleName": "Fauzan",
            "lastName": "Wijaya",
            "fullName": "Adriana Fauzan Wijaya",
            "preferredName": "Adrian",
            "emailAddress": "adrian.fauzan@example.com",
            "phonePrefix": "62",
            "phoneNumber": "85813093961",
            "genderId": "23718861-42ec-4af7-bcf1-1e0de8ff5d3f",
            "genderName": "Female",
            "pobCountryCode": "IDN",
            "pobCountry": "Indonesia",
            "pob": "Jakarta Selatan",
            "dob": "1996-04-20",
            "nationalityId": "49df8137-fc95-40e1-8dce-182266ca977f",
            "nationalityName": "Belgian",
            "sourceOfIncomeId": "a81e7e1e-3a57-4771-9ee8-f24095167496",
            "sourceOfIncomeName": "Government funding",
            "occupationId": "7035288a-2447-479f-a61b-388d366f28ec",
            "occupationName": "Professional",
            "maritalStatusId": "a2d54bc4-2bca-4bda-83ad-d3ee45d5f172",
            "maritalStatusName": "Single",
            "educationId": "049a3a6c-0ab7-4e8b-859e-66c86afe690b",
            "educationName": "Magister (S2)",
            "workstatusId": "30d2ab30-3cc8-437f-92de-b201c9b6ee08",
            "workstatusName": "Employed",
            "workpositionId": "67c2b90c-4274-4cd2-a1dc-0a73804cd386",
            "workpositionName": "Head of Division / Department Head"
        },
        "businessInformation": {
            "foundationYear": "0",
            "numberOfEmployee": "0"
        },
        "mainAddress": {
            "countryCode": "IDN",
            "country": "Indonesia",
            "state": "DKI JAKARTA",
            "city": "JAKARTA SELATAN",
            "district": "SETIABUDI (SETIA BUDI)",
            "subdistrict": "KUNINGAN TIMUR",
            "zipcode": "12950",
            "address": "Jl. Setiabudi No.20 RT 01/02"
        },
        "domicileAddress": {
            "countryCode": "IDN",
            "country": "Indonesia",
            "state": "DKI JAKARTA",
            "city": "JAKARTA SELATAN",
            "district": "SETIABUDI (SETIA BUDI)",
            "subdistrict": "KUNINGAN TIMUR",
            "zipcode": "12950",
            "address": "Jl. Setiabudi No.20 RT 01/02"
        },
        "firstActiveAt": "2025-09-17T08:48:51Z",
        "lastActiveAt": "2025-09-17T08:48:51Z",
        "lastInactiveAt": "2025-09-17T09:15:31Z",
        "createdAt": "2025-09-17T08:48:51Z",
        "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media",
        "updatedAt": "2025-09-17T09:15:31Z",
        "updatedBy": "(API_PARTNER) Lingkar Sembilan Titian Media"
    }
}
Modified at 2025-09-17 08:26:54
Previous
Update Sender
Next
Reactive
Built with