curl --request PATCH \
--url https://api.example.com/api/v1/products/{product_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"fee_structure": {
"fee_type": "RATE"
},
"name": "<string>"
}
'{
"catalog": true,
"created_at": "2023-11-07T05:31:56Z",
"fee_structure": {
"fee_type": "RATE"
},
"fee_type": "RATE",
"id": "<string>",
"name": "<string>",
"product_family_id": "<string>",
"archived_at": "2023-11-07T05:31:56Z",
"description": "<string>"
}Partially update product fields. The fee_type is immutable and cannot be changed.
curl --request PATCH \
--url https://api.example.com/api/v1/products/{product_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"fee_structure": {
"fee_type": "RATE"
},
"name": "<string>"
}
'{
"catalog": true,
"created_at": "2023-11-07T05:31:56Z",
"fee_structure": {
"fee_type": "RATE"
},
"fee_type": "RATE",
"id": "<string>",
"name": "<string>",
"product_family_id": "<string>",
"archived_at": "2023-11-07T05:31:56Z",
"description": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Product ID
"prd_7n42DGM5Tflk9n8mt7Fhc7"
Product updated
Show child attributes
RATE, SLOT, CAPACITY, USAGE, EXTRA_RECURRING, ONE_TIME "prd_7n42DGM5Tflk9n8mt7Fhc7"
"pf_7n42DGM5Tflk9n8mt7Fhc7"