Skip to main content
PUT
/
api
/
v1
/
groups
/
{groupId}
Update a group.
curl --request PUT \
  --url https://api.revong.com/api/v1/groups/{groupId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "category": "<string>",
  "desc": "<string>",
  "ownerId": "<string>",
  "ownerType": "<string>"
}'

Authorizations

Authorization
string
header
required

Bearer token with Platform JWT token or API Key.

Path Parameters

groupId
string
required

Body

application/json
name
string

Label is only used for the presentation.

category
string

Category is only used for the presentation.

desc
string

Desc (visible to users).

ownerId
string

You must provide owner of the group.

ownerType
string

Owner type.

Response

OK.