Create a new group in your organization
cURL
curl --request POST \ --url https://api-v2.requesty.ai/v1/manage/group \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "Engineering Team", "monthly_limit": 1000 } '
{ "group_id": "123e4567-e89b-12d3-a456-426614174000" }
API key for authentication
The name of the group
"Engineering Team"
Monthly spending limit for the group. 0 means unlimited.
1000
Group created successfully
The ID of the created group
"123e4567-e89b-12d3-a456-426614174000"
Was this page helpful?