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

Authorizations

Authorization
string
header
required

Body

application/json
name
string

Name of the product

Example:

"Professional teams plan"

Response

201 - application/json

Returns the created 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"