Change session user
curl --request PATCH \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/change \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"group_id": "<string>",
"prop": "<string>",
"role_id": "<string>",
"server_id": "<string>",
"value": "<string>"
}'
{
"success": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object
.
curl --request PATCH \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/change \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"group_id": "<string>",
"prop": "<string>",
"role_id": "<string>",
"server_id": "<string>",
"value": "<string>"
}'
{
"success": true
}