slice Business app icon

slice Business API

الهند مصرفية التجار

الخدمات المصرفية للتجار slice Business (الهند) — تسجيل دخول عبر OTP، الملف الشخصي والرصيد، سجلات التحصيل/دفتر الحساب، المستفيدون، وتحويل بنكي من خطوتين.

نظرة عامة

💡

عنوان URL الأساسي: https://api.openbankinggateway.com — تستخدم كل الاستجابات الغلاف الموحّد {code, data}.

تدفّق الجلسة: أكمل نقاط تسجيل الدخول للحصول على token من البوابة، ثم مرّره كـ token= إلى كل نقطة نهاية تتطلب مصادقة.

الشفافية: يُضمَّن JSON المصدر المالي الخام تحت data.upstream في كل استجابة — النجاح والخطأ على حدٍّ سواء.

املأ المعاملات في أي نقطة نهاية أدناه واضغط 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>'