Catalogs
Update Catalog
Catalogs
Update Catalog
PUT
/
api
/
v1
/
catalogs
/
{id}
curl --request PUT \
--url https://app.flowglad.com/api/v1/catalogs/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"catalog": {
"isDefault": true,
"name": "<string>",
"id": "<string>"
}
}'
{
"catalog": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"organizationId": "<string>",
"isDefault": true,
"name": "<string>"
}
}
Authorizations
Path Parameters
Body
application/json
curl --request PUT \
--url https://app.flowglad.com/api/v1/catalogs/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"catalog": {
"isDefault": true,
"name": "<string>",
"id": "<string>"
}
}'
{
"catalog": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"organizationId": "<string>",
"isDefault": true,
"name": "<string>"
}
}