Skip to content

Create Group

POST
/v1/groups
curl --request POST \
--url https://example.com/api/v1/groups \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "name": "example" }'

Create group request

Media type application/json
object
name
required
string
Example generated
{
"name": "example"
}

Created

Media type application/json
object
createdAt
string
currency
string
id
string
name
string
updatedAt
string
Example generated
{
"createdAt": "example",
"currency": "example",
"id": "example",
"name": "example",
"updatedAt": "example"
}