Products

Accessing Customer Specific Product Details

This section provides a detailed and user-friendly interface for customers to access and review the complete list of products associated with their account.

Get

Role: Customer

This GET method allows customers to view a list of products associated with their account. By entering their unique customer code, customers can retrieve detailed information about the products they have access to or have purchased.

Retrieves a list of products for a specific customer by their code.

get
Authorizations
Path parameters
customerCodestringRequired

customer_code is the code of the customer.

Responses
200

Success

application/json
get
/v1/customer/{customerCode}/products
GET /v1/customer/{customerCode}/products HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "code": 1,
  "message": "text",
  "products": [
    {
      "id": 1,
      "code": "text",
      "name": "text",
      "description": "text",
      "url": "text",
      "copyright": "text",
      "createdAt": "text",
      "image": "text",
      "price": 1,
      "resellerPrice": 1,
      "currency": "text",
      "signatureKeysId": 1
    }
  ]
}

Last updated