Skip to main content
GET
/
products
/
{productId}
curl --request GET \
     --url https://api.tryaqueduct.com/v1/products/productId \
     --header 'Accept: application/json' \
     --header 'Authorization: null'
{
  "id": "prod_01FSSVRVGQ7GGB13815DE3F518",
  "name": "Professional teams plan"
}
curl --request GET \
     --url https://api.tryaqueduct.com/v1/products/productId \
     --header 'Accept: application/json' \
     --header 'Authorization: null'

Authorizations

Authorization
string
header
required

Path Parameters

productId
string
required

The id of the Product to retrieve

Response

200 - application/json

Returns the requested Product

A product describes the specific good or service you offer to you customer. Products are used with PricingFunctions to create quotes and invoices.

id
string
required

A unique identifier for the object

Example:

"prod_01FSSVRVGQ7GGB13815DE3F518"

name
string
required

The product's name, meant to be displayed to your customers. This will show up on quotes and invoices.

Example:

"Professional teams plan"