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 'x-api-key: <api-key>' \
--header 'x-api-env: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Adrian Boehm",
"resources": [
{
"id": "19f52711-a427-416a-9a3d-69a379356c35"
}
]
}'
Responses
application/json {
"id": "e6e8b017-1b67-4463-9505-97670d2ba735",
"name": "Test Group",
"created_at": "2025-07-30T14:08:54Z",
"updated_at": "2025-07-30T14:08:54Z"
}
Modified at 2025-10-30 09:44:22