So I have tried all sorts now.
I have tried this json
{
name: "Bla bla",
type: "group-tab",
external_id: "some_key_that_is_unique_gUID"
}
That did not work. It complains that group-tab is not a valid type. If I leave it off then it complains that the value is mandatory. The SDK allows me to omit the type.
How do I create a group and what is the valid type for a group tab.
I assume you want to create a content type with content groups, am I right?
If so, you need to send POST request to
https://manage.kontent.ai/v2/projects/{project_id}/types
with the body:Please note
"content_groups":[...]
field in the root of JSON as well as a specific content group for each element.Also, do not forget to add auth header. You can find more info in the documentation.
Note: I assume (from your disclosed payload), the API is complaining correctly that group_tab is not a valid type, since you probably use the wrong endpoint - not sure here since you didn't post your whole request.