PATCH
/
v2
/
workspaces
/
members
curl --request PATCH \
  --url https://api.squarecloud.app/v2/workspaces/members \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceId": "<string>",
  "memberId": "<string>",
  "group": "<string>"
}'
{
  "status": "success"
}
Authorization
string
required

The API key for your account. You can find this in your account settings.

workspaceId
string

The ID of the workspace.

memberId
string

The member ID.

group
string

The member permissions on the workspace applications.

Response

status
string

Indicates whether the call was successful. success if successful, error if not.

{
  "status": "success"
}