Products
Create Product
Products
Create Product
POST
/
api
/
v1
/
products
curl --request POST \
--url https://app.flowglad.com/api/v1/products \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"product": {
"name": "<string>",
"description": "<string>",
"imageURL": "<string>",
"displayFeatures": [
{
"enabled": true,
"label": "<string>",
"details": "<string>"
}
],
"active": true,
"singularQuantityLabel": "<string>",
"pluralQuantityLabel": "<string>",
"catalogId": "<string>"
},
"price": {
"intervalUnit": "day",
"name": "<string>",
"intervalCount": 123,
"type": "subscription",
"trialPeriodDays": 123,
"setupFeeAmount": 123,
"isDefault": true,
"unitPrice": 123,
"productId": "<string>",
"active": true
}
}'
{
"product": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"name": "<string>",
"description": "<string>",
"imageURL": "<string>",
"organizationId": "<string>",
"displayFeatures": [
{
"enabled": true,
"label": "<string>",
"details": "<string>"
}
],
"active": true,
"singularQuantityLabel": "<string>",
"pluralQuantityLabel": "<string>",
"catalogId": "<string>"
}
}
Authorizations
Body
application/json
A subscription price, which will have details on the interval, default trial period, and setup fee (if any).
Available options:
day
, week
, month
, year
safeZodPositiveInteger
Available options:
subscription
safeZodPositiveInteger
safeZodPositiveInteger
safeZodPositiveInteger
Response
200
application/json
Successful response
safeZodDate
safeZodDate
curl --request POST \
--url https://app.flowglad.com/api/v1/products \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"product": {
"name": "<string>",
"description": "<string>",
"imageURL": "<string>",
"displayFeatures": [
{
"enabled": true,
"label": "<string>",
"details": "<string>"
}
],
"active": true,
"singularQuantityLabel": "<string>",
"pluralQuantityLabel": "<string>",
"catalogId": "<string>"
},
"price": {
"intervalUnit": "day",
"name": "<string>",
"intervalCount": 123,
"type": "subscription",
"trialPeriodDays": 123,
"setupFeeAmount": 123,
"isDefault": true,
"unitPrice": 123,
"productId": "<string>",
"active": true
}
}'
{
"product": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"name": "<string>",
"description": "<string>",
"imageURL": "<string>",
"organizationId": "<string>",
"displayFeatures": [
{
"enabled": true,
"label": "<string>",
"details": "<string>"
}
],
"active": true,
"singularQuantityLabel": "<string>",
"pluralQuantityLabel": "<string>",
"catalogId": "<string>"
}
}