Config Types
Update
Update a config type by ID.
patch/config_types/{config_type_id}
Path parameters
config_type_idstring required
Example:cfg_typ_123
The unique identifier of the config type.
Request body
Example request
{
"name": "My Config Type",
"slug": "my-config-type"
}Response
Successfully updated the config type.
Example response
{
"object": "config_type",
"id": "cfg_123",
"name": "My Config Type",
"slug": "my-config-type",
"created_at": "2021-01-01T00:00:00Z",
"updated_at": "2021-01-01T00:00:00Z"
}