v1
latestOpenAPI 3.1.02026-07-2498134321.1 KBUpdate Workflow Role Assignment
Updates the assignment of the specified role (e.g. Archiver, Signature Coordinator, etc.) on the workflow to a new user. The new assignee must be eligible to be assigned to the role per the workflow definition configured in workflow designer. Note: If a role is assigned to another role in the workflow configuration, the new assignee will be assigned to both roles.
OAuth Scope required: public.workflows.updateRoleAssignment
Path parameters
The unique identifier or Ironclad ID of a workflow.
The display name of the role, URL-encoded (e.g. Legal%20Approver).
Headers
Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-id is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.
Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-email is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.
Request body
Example request
{
"userId": "61968ae4945dcecf4a78cc83"
}Response
200
Example response
{
"roleName": "Legal Approver",
"assignee": {
"userId": "61968ae4945dcecf4a78cc83",
"displayName": "Jane Doe",
"email": "jane@example.com"
}
}