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

Get SubLedger Callback Urls

GET
/merchant/account/callback-url/{clientId}
This API retrieves the callback URLs configured for subledger operations. The response includes URLs for normal, utility, and invoice callbacks. If a callback URL is not set, the corresponding field will be null.

Response Body#

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

Request

Path Params

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 GET '/merchant/account/callback-url/'

Responses

🟢200New Request
application/json
Body

Example
{
    "normal": null,
    "utility": null,
    "invoice": null
}
Modified at 2025-03-17 22:14:50
Previous
Activate Sub Ledger For Merchant
Next
Set SubLedger Callback Urls
Built with