Virtual Account Services
  1. Account
Virtual Account Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Create Account
      POST
    • Rename Account
      POST
    • Balance Inquiry
      GET
    • Create Bulk Accounts
      POST
    • List Accounts
      GET
  • Transaction
    • Credit Account
      POST
    • Debit Account
      POST
    • Credit Account [Agency Banking]
      POST
    • Debit Account [Agency Banking]
      POST
    • Transaction Query
      GET
    • Transaction Details
      GET
    • Transaction History
      GET
  • Transfer
    • Get Institutions
      GET
    • Name Inquiry
      POST
    • Interbank Transfer
      POST
    • Interbank Transfer [Sync]
      POST
    • Transfer Query
      GET
    • Transfer Enquiry
      GET
    • Virtual Account Intrabank Transfer
      POST
    • Core Banking Intrabank Transfer
      POST
    • Collection Accounts Intrabank Transfer
      POST
  • Invoice
    • Create Invoice
    • Get Invoice Detail
    • List Merchant Invoices
  • Refunds
    • Initiate Refund
    • Get Refund Status
    • Get Refunds
  • Notifications
    • Notification
    • Send Notification
  • Merchant
    • Account
      • Get Account
        GET
      • Activate Sub Ledger For Merchant
        POST
      • Get SubLedger Callback Urls
        GET
      • Set SubLedger Callback Urls
        POST
      • Get Collection Accounts
        GET
    • Transfer
      • Get Transfer History
      • Get Subledger transfers
      • Get Transfer Details
      • Name Inquiry
    • Refund
      • Refund Details
  • Admin
    • Accounting
      • Get GL Accounts
      • Get Classification Codes
    • Dashboard
      • Dashboard Summary
      • Dashboard Transactions
      • Dashboard Transaction Details
    • Group Codes
      • Get Group Codes
      • Set Collection Account
      • Create Group Code
    • Reporting
      • Get Report Types
      • Get Report Parameters
      • Create Report
      • Get Reports
      • Get Reports Details
  1. Account

Set SubLedger Callback Urls

POST
/core/callback-url/{clientId}
This API sets the callback URLs for subledger operations for a given client. The client is identified by the clientId provided as a path variable. The request body includes the callback URLs for normal, utility, and invoice operations. The response returns the updated callback URL settings.

Path Parameters#

Field NameTypeRequiredDescription
clientIdstringTRUEThe unique identifier of the client/merchant.

Request Body#

Field NameTypeRequiredDescription
normalstringFALSEThe callback URL for normal subledger transactions.
utilitystringFALSEThe callback URL for utility subledger transactions.
invoicestringFALSEThe callback URL for invoice subledger transactions.

Response Body#

Field NameTypeDescription
normalstringThe updated callback URL for normal transactions, or null if not set.
utilitystringThe updated callback URL for utility transactions, or null if not set.
invoicestringThe updated callback URL for invoice transactions, or null if not set.

Request

Path Params

Body Params application/json

Example
{
    "normal": "normal callback url",
    "utility": "utility callback url",
    "invoice": "invoice callback url"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/core/callback-url/2976' \
--header 'Content-Type: application/json' \
--data-raw '{
    "normal": "normal callback url",
    "utility": "utility callback url",
    "invoice": "invoice callback url"
}'

Responses

🟢200Set SubLedger Callback Urls
application/json
Body

Example
{
    "normal": null,
    "utility": "utility callback url",
    "invoice": null
}
Modified at 2025-03-17 22:27:42
Previous
Get SubLedger Callback Urls
Next
Get Collection Accounts
Built with