Skip to main content
GET
/
product
/
{id}
cURL
curl --request GET \
  --url https://uat-api.clinkbill.com/api/product/{id} \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-Timestamp: <api-key>'
{
  "productId": "<string>",
  "name": "<string>",
  "active": true,
  "description": "<string>",
  "defaultPrice": "<string>",
  "image": "<string>",
  "taxCategory": "digital_goods_or_service",
  "createTime": 123,
  "updateTime": 123
}

Authorizations

X-API-KEY
string
header
required

Your secret API key obtained from the Clink dashboard (Developers section)

X-Timestamp
string
header
required

Current timestamp in milliseconds since Unix epoch (required for request signing)

Path Parameters

productId
string
required

Unique identifier of the product configured in your dashboard

Response

Product details retrieved successfully

productId
string

Unique identifier of the product

name
string

The name of the product

active
boolean

Is it available for purchase

description
string

The description of the product

defaultPrice
string

The default price ID of the product

image
string

The image URL of the product

taxCategory
enum<string>

The type of tax

Available options:
digital_goods_or_service,
ebook,
software_service
createTime
integer<int64>

Unix timestamp when the product was created

updateTime
integer<int64>

Unix timestamp when the product was updated