Vyond · Arazzo Workflow
Provision and deactivate a Vyond user over SCIM 2.0
Version 1.0.0
Discover the SCIM schemas, search for an existing user by filter, create the user, then deactivate them with a PATCH.
View Spec
View on GitHub
VideoAnimationVideo GenerationArtificial IntelligenceeLearningLearning and DevelopmentContent GenerationSCIMIdentity ProvisioningWebhooksEnterpriseMediaArazzoWorkflows
Provider
Workflows
scim-provision-user
Enterprise user lifecycle against the RFC 7643/7644 SCIM surface.
Requires an Enterprise plan with SSO enabled and the SCIM API token generated under Security > SCIM Provisioning. Vyond requires userName to equal the email address. There is no SCIM DELETE — deactivation is a PATCH of active to false. Groups are not supported.
1
discover-schemas
ScimController.getSchemas
Read the supported schemas rather than assuming the attribute set.
2
search-existing
ScimController.getUsers
Check for an existing user before creating, so a 409 uniqueness conflict is avoided rather than handled.
3
create-user
ScimController.createUser
Create the user. A 403 here has three distinct causes — SSO not enabled, unsupported country, or insufficient team seats — distinguished only by reason. A 409 with scimType uniqueness means the email is already registered.
4
read-user
ScimController.getUser
Confirm the created user.
5
deactivate-user
ScimController.patchUser
Deprovision. There is no SCIM DELETE operation in the Vyond contract, so deactivation is a PATCH replacing active with false.