delete_collaborator
Remove a collaborator from a Storyblok space using collaborator_id or sso_id. Simplify user management by deleting unwanted or inactive collaborators.
Instructions
Deletes a collaborator from a specified Storyblok space.
You can delete by numeric collaborator_id or by sso_id for SSO users.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collaborator_id | Yes | ||
sso_id | No |
Input Schema (JSON Schema)
{
"properties": {
"collaborator_id": {
"title": "Collaborator Id",
"type": "integer"
},
"sso_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sso Id"
}
},
"required": [
"collaborator_id"
],
"title": "delete_collaboratorArguments",
"type": "object"
}