Authorizations
Path Parameters
Body
application/json
curl --request PATCH \
--url http://{defaultHost}/api/v2/platform/shipping_categories/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"shipping_category": {
"name": "Another Category"
}
}'{
"data": {
"id": "141",
"type": "shipping_category",
"attributes": {
"name": "Default",
"created_at": "2022-11-08T19:35:22.647Z",
"updated_at": "2022-11-08T19:35:22.876Z"
}
}
}Updates a Shipping Category
curl --request PATCH \
--url http://{defaultHost}/api/v2/platform/shipping_categories/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"shipping_category": {
"name": "Another Category"
}
}'{
"data": {
"id": "141",
"type": "shipping_category",
"attributes": {
"name": "Default",
"created_at": "2022-11-08T19:35:22.647Z",
"updated_at": "2022-11-08T19:35:22.876Z"
}
}
}Show child attributes
Show child attributes
Was this page helpful?