Payment
Payment Channels
Get the list of available payment channels and their status.
Try it in Postman
Get the list of available payment channels and their status.
Endpoint
URL: {{baseUrl}}/api/v2/payment-channels
Method: GET
Request Headers
| Key | Value | Description |
|---|---|---|
Content-Type | application/json | |
signature | {{signature}} | Generated signature. See Signature Generation. |
va | {{va}} | Your Virtual Account Number. |
timestamp | {{timestamp}} | Current timestamp. |
Example Response
{
"Status": 200,
"Success": true,
"Message": "Success",
"Data": [
{
"Code": "va",
"Name": "Virtual Account",
"Description": "Virtual Account",
"Channels": [
{
"Code": "bca",
"Name": "BCA",
"Description": "BCA",
"Logo": "https://storage.googleapis.com/ipaymu-docs/assets/bca.png",
"PaymentInstructionsDoc": "https://storage.googleapis.com/ipaymu-docs/cara-pembayaran/va-bca.pdf",
"FeatureStatus": "active",
"HealthStatus": "online",
"TransactionFee": {
"ActualFee": 4000,
"ActualFeeType": "FLAT",
"AdditionalFee": 0
}
}
// ... other channels
]
}
// ... other methods
]
}