Create a new Group and store it
Request
Add parameter in header x-api-key
Example:x-api-key: ********************
Add parameter in header x-api-env
Example:x-api-env: ********************
or
Body Params application/json
{
"name": "Adrian Boehm",
"resources": [
{
"id": "19f52711-a427-416a-9a3d-69a379356c35"
}
]
}
Request Code Samples
curl --location --request POST 'https://api.vplan.com/v1/group' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--header 'x-api-env;' \
--data-raw '{
"name": "Adrian Boehm",
"resources": [
{
"id": "19f52711-a427-416a-9a3d-69a379356c35"
}
]
}'
Responses
application/json {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
}
Modified at 2025-07-24 09:37:44