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": "triduana",
    "shared_capacity": false
}
Request Code Samples
curl --location --request POST 'https://api.vplan.com/v1/space' \
--header 'x-api-key: <api-key>' \
--header 'x-api-env: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "triduana",
    "shared_capacity": false
}'
Responses
application/json {
    "id": "26a98465-fda5-4cea-822d-3ca83c09da9b",
    "name": "triduana",
    "shared_capacity": false,
    "created_at": "2025-07-30T14:10:49Z",
    "updated_at": "2025-07-30T14:10:49Z"
}
Modified at 2025-10-30 09:44:22