slice Business app icon

slice Business API

印度 商户银行

slice Business 商户银行(印度)—— OTP 登录、资料与余额、收款/存折流水、收款人管理,以及两步式银行转账。

概览

💡

基础 URL: https://api.openbankinggateway.com — 所有响应均采用统一的 {code, data} 结构。

会话流程: 完成登录端点即可获得网关 token,随后在每个需要鉴权的端点以 token= 传入。

透明性: 每个响应(无论成功或失败)都在 data.upstream 下附带原始的上游金融科技 JSON。

在下方任意端点填入参数并点击 Send request 即可调用在线网关,或复制 curl 示例在终端中运行。

Auth

POST/api/slice/login/start

Start OTP login

ParameterInValue
phone*query
pin*query
curl -X POST 'https://api.openbankinggateway.com/api/slice/login/start?phone=9000000000&pin=0000'
POST/api/slice/login/confirm

Confirm OTP and issue a session token

ParameterInValue
phone*query
otp*query
curl -X POST 'https://api.openbankinggateway.com/api/slice/login/confirm?phone=9000000000&otp=123456'

Account

GET/api/slice/profile

Merchant profile (token required)

ParameterInValue
token*query
curl -X GET 'https://api.openbankinggateway.com/api/slice/profile?token=<token>'
GET/api/slice/account-screen

Balance and bank account summary (token required)

ParameterInValue
token*query
curl -X GET 'https://api.openbankinggateway.com/api/slice/account-screen?token=<token>'
GET/api/slice/transactions

Recent QR/UPI collections (token required)

ParameterInValue
token*query
pageNumberquery
pageSizequery
curl -X GET 'https://api.openbankinggateway.com/api/slice/transactions?token=<token>&pageNumber=0&pageSize=10'
GET/api/slice/passbook

Bank passbook ledger, CREDIT/DEBIT (token required)

ParameterInValue
token*query
pageNumberquery
pageSizequery
curl -X GET 'https://api.openbankinggateway.com/api/slice/passbook?token=<token>&pageNumber=0&pageSize=10'

Transfer

GET/api/slice/beneficiary/manage

List saved beneficiaries (token required)

ParameterInValue
token*query
curl -X GET 'https://api.openbankinggateway.com/api/slice/beneficiary/manage?token=<token>'
POST/api/slice/sendMoney/prepare

Prepare bank transfer (sends confirmation OTP)

ParameterInValue
token*query
beneficiaryId*query
amount*query
notesquery
curl -X POST 'https://api.openbankinggateway.com/api/slice/sendMoney/prepare?token=<token>&beneficiaryId=<beneficiaryId>&amount=100.00'
POST/api/slice/sendMoney/confirm

Confirm bank transfer with OTP

ParameterInValue
token*query
otp*query
curl -X POST 'https://api.openbankinggateway.com/api/slice/sendMoney/confirm?token=<token>&otp=<otp>'