v1

latestOpenAPI 3.0.32026-07-132681171.6 KB

Create group

Create a new group in your organization

post/v1/manage/group

Request body

namestring required

The name of the group

monthly_limitnumber double

Monthly spending limit for the group. 0 means unlimited.

Example request

{
  "name": "Engineering Team",
  "monthly_limit": 1000
}

Response

Group created successfully

group_idstring uuid required

The ID of the created group

Example response

{
  "group_id": "123e4567-e89b-12d3-a456-426614174000"
}