Skip to content

Update a client org

PATCH
/v1/workspaces/{workspaceId}/sharees/{shareeId}
curl --request PATCH \
--url https://shareout.site/v1/workspaces/example/sharees/example \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "type": "example", "properties": {}, "branding": { "logo": "example", "color": "example" } }'
workspaceId
required
string

Workspace ID or slug.

shareeId
required
string
Media type application/json
object
name
string
type
string
properties
object
branding
object
logo
string
color
string
Example generated
{
"name": "example",
"type": "example",
"properties": {},
"branding": {
"logo": "example",
"color": "example"
}
}

Updated

Resource not found

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}