Product List

Product List

This Digital Gold Product Lists API allows you to retrieve available digital gold products for redemption.

Digital Gold Product Lists API

Endpoint Information

Method: POST
URL: https://api.aeronpay.in/api/serviceapi-prod/api/digitalgold/user/products

Description

The Product Lists API allows you to fetch all available digital gold products that can be redeemed by customers. This endpoint returns a comprehensive list of gold and silver products with their specifications, pricing, and redemption details.

Headers

HeaderTypeRequiredDescription
client-idstringYesUnique Client ID provided by AeronPay
client-secretstringYesUnique Client Secret Key for authentication
Content-TypestringYesMust be application/json

Request Structure

Request Body

{
  "client_referenceId": "REF12345"
}

Request Parameters

FieldData TypeRequiredValidation Rules
client_referenceIdstringYesMax 30 characters

Request Example

curl -X POST "https://api.aeronpay.in/api/serviceapi-prod/api/digitalgold/user/products" \
  -H "client-id: YOUR_CLIENT_ID" \
  -H "client-secret: YOUR_CLIENT_SECRET" \
  -H "Content-Type: application/json" \
  -d '{
    "client_referenceId": "REF12345"
  }'

Error Responses

Bad Request (400)

{
  "status": "FAILED",
  "statusCode": "400",
  "message": "Invalid client_referenceId or missing required parameters",
  "acknowledged": "0"
}

Unauthorized (401)

{
  "status": "FAILED",
  "statusCode": "401",
  "message": "Invalid client credentials",
  "acknowledged": "0"
}
Language
Click Try It! to start a request and see the response here!