curl --request POST \
--url https://api.gcore.com/fastedge/v1/admin/groups \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"default_flag": false,
"name": "<string>"
}'
{
"id": 123,
"name": "<string>",
"default_flag": false
}
curl --request POST \
--url https://api.gcore.com/fastedge/v1/admin/groups \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"default_flag": false,
"name": "<string>"
}'
{
"id": 123,
"name": "<string>",
"default_flag": false
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Group description
The body is of type object
.
Ok
The response is of type object
.
Was this page helpful?