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

Save Profile Image

POST
https://api.infydigi.com/merchant-services/save-profile-image
This API can be used to set a profile image to the account.

Request

Header Params
Authorization
string 
optional
Access Token received from Generate Token method
Body Params application/json
merchantId
string 
required
Merchant Id shared by InfyDigi
profileImg
string 
required
base64 of the Image
Example
{
    "merchantId":"34669491",
    "profileImg":""
}

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 POST 'https://api.infydigi.com/merchant-services/save-profile-image' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantId":"34669491",
    "profileImg":""
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-01-18 18:09:31
Previous
Get Account Status
Next
Fund Transfer
Built with