Skip to content

Update Group

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

User Data

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

OK

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"
}