PUT
/
api
/
v1
/
prices
/
{id}
curl --request PUT \
  --url https://app.flowglad.com/api/v1/prices/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "price": {
    "livemode": true,
    "intervalUnit": "day",
    "name": "<string>",
    "intervalCount": 123,
    "type": "subscription",
    "trialPeriodDays": 123,
    "setupFeeAmount": 123,
    "isDefault": true,
    "unitPrice": 123,
    "productId": "<string>",
    "active": true,
    "currency": "USD",
    "id": "<string>"
  }
}'
{
  "price": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "livemode": true,
    "intervalUnit": "day",
    "name": "<string>",
    "intervalCount": 123,
    "type": "subscription",
    "trialPeriodDays": 123,
    "setupFeeAmount": 123,
    "isDefault": true,
    "unitPrice": 123,
    "productId": "<string>",
    "active": true,
    "currency": "USD"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Body

application/json
price
object
required

A price record, which describes a price for a product. Products can have multiple prices.

Response

200
application/json
Successful response
price
object
required

A subscription price, which will have details on the interval, default trial period, and setup fee (if any).