Standing instruction — auto debit
AUTO DEBIT standing instructions — scheduled FIXED debits after PayDirect mandate registration.
Documentation Index
Fetch the complete documentation index at: https://payglocal.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
AUTO DEBIT standing instructions
AUTO DEBIT standing instructions automatically process subsequent debits based on the configured schedule after successful mandate registration. Registration uses the same PayDirect initiate endpoint as GPI with astandingInstruction block.
Key points
- Register the mandate using the Initiate API with
startDateand a scheduledfrequencysuch asWEEKLY,BIWEEKLY,MONTHLY,QUARTERLY,HALFYEARLY, orYEARLY(notONDEMAND). - After successful registration, subsequent debit transactions are automatically initiated according to the configured schedule.
- No SI sale API calls are required for subsequent debit transactions.
- The amount for subsequent debits must be
FIXED.
Supported payment methods
| Method | Domestic | International |
|---|---|---|
| Cards | — | ✓ |
paymentData, send cardData only (tokenData is not supported).
API
| Method | POST |
| Path | /gl/v1/payments/initiate |
| Production | https://api.payglocal.in/gl/v1/payments/initiate |
| Sandbox | https://api.uat.payglocal.in/gl/v1/payments/initiate |
Headers
Same as GPI. SetstandingInstruction.data (amount, scheduled frequency, type: FIXED, startDate) in Request body below.
Next actions
PayGlocal debits on your configured schedule. Do not call SI subsequent payment for scheduled debits.| Action | API |
|---|---|
| Mandate status | Check mandate status |
| Cancel mandate | Cancel standing instruction |
| Each scheduled debit | Get transaction status and your merchantCallbackURL |
Authorizations
RSA-signed JWS (JSON Web Signature) token carrying the request payload.
- Header:
{ "alg": "RS256", "kid": "<merchant-key-id>", "iss": "<merchant-id>", "x-gl-enc": "false", "is-digested": "true" } - Payload: the exact JSON body sent in the request (or its SHA-256 digest when
is-digested=true). - Signed with the merchant's RSA private key; PayGlocal verifies with the matching public key.
Body
Scheduled auto debit standing instruction registration.
International cards only (paymentData.cardData).
Merchant's unique transaction identifier. Alphanumeric only.
4 - 50"23AEE8CB6B62EE2AF07"
Customers are redirected here post payment completion.
"https://api.prod.payglocal.in/gl/v1/payments/merchantCallback"
International cards only. Send cardData only — tokenData is not supported for standing instruction registration.
Optional stable merchant-side ID for idempotency and reconciliation. Alphanumeric only.
15 - 40"IFNN939494NJFJ"
Recommended for fraud checks and processor compliance.
Response
Returned immediately from initiate. Redirect the customer to data.redirectUrl, then poll data.statusUrl or Get Transaction Status. When mandate registration succeeds, data.mandateId may be present in data.
Response envelope for PayDirect standing instruction initiate (200). data may include mandateId.
No fields in this envelope are marked required.
PayGlocal transaction ID. Use for status, capture, and refund APIs.
"gl_o-a057c4d6b6c620741apzp0ZX2"
High-level status. Typically INPROGRESS immediately after initiate.
"INPROGRESS"
Human-readable status message.
"Transaction Created Successfully"
Response timestamp (DD/MM/YYYY HH:MM:SS).
"02/06/2026 21:47:33"
Success code on initiate (e.g. 200). See 4xx responses for error codes.
"200"
Standing instruction registration may also return mandateId in data — store it for SI sale, status, and cancel.
null on success.

