Kalbe for Developers
  1. Payments
Kalbe for Developers
  • Overview
  • Payments
    • Masrvi
      • How Masrvi payment works
      • Initiate Masrvi payment
    • Bankily Payment
      POST
    • Check Payment Status
      GET
  • Wallet
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Payments

Bankily Payment

POST
https://sandbox.kalbe.io/api/payment/bankily
Last modified:2025-06-01 20:25:06
Process a payment through the Bankily provider.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢201OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.kalbe.io/api/payment/bankily' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reference": "string",
    "phone": "string",
    "amount": 0,
    "validation_code": 0
}'
Response Response Example
{
    "success": true,
    "transactionId": "TXN_1640995200_A1B2C3D4",
    "paymentMethod": "bankily",
    "errorMessage": null
}
Modified at 2025-06-01 20:25:06
Previous
Initiate Masrvi payment
Next
Check Payment Status
Built with