InfyDigi Merchant APIs
  1. Account
InfyDigi Merchant APIs
  • Introduction
  • Process Flow
  • Error Codes
  • Authentication
    • Generate Token
      POST
  • Account
    • Get Account Status
      GET
    • Save Profile Image
      POST
  • Payments
    • Fund Transfer
      POST
    • Fetch Transaction Details
      GET
  • Utilities
    • Check IFSC Code
      GET
  1. Account

Get Account Status

GET
https://api.infydigi.com/v1/merchant-service/merchant-progress-track
This API helps in getting the status of your InfyDigi API Account.

Request

Query Params
merchantId
string 
optional
Merchant Id shall be shared by InfyDigi post onboarding
Example:
08810816
Header Params
Authorization
string 
optional

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.infydigi.com/v1/merchant-service/merchant-progress-track?merchantId=08810816' \
--header 'Authorization;'

Responses

🟢200Success
application/json
Body
respCode
integer 
required
data
object 
required
address
string 
required
approved
boolean 
required
active
boolean 
required
released
boolean 
required
wallet
boolean 
required
payIn
boolean 
required
merchantName
string 
required
description
string 
required
merchantBusinessName
string 
required
msg
string 
required
Example
{
    "respCode": 200,
    "data": {
        "address": "",
        "approved": false,
        "active": true,
        "released": false,
        "wallet": false,
        "payIn": false,
        "merchantName": "Infi",
        "description": "Merchant Created : Approval Remaining",
        "merchantBusinessName": "ACCOSIS"
    },
    "msg": "success"
}
Modified at 2025-01-18 18:09:22
Previous
Generate Token
Next
Save Profile Image
Built with