approverUpdate

Graphql fields and variables for the approverUpdate mutation

Update an approver

Scope required: security:write

For a complete list of input attributes see the ApproverAttributes type

mutation approverUpdate ($id: ID!, $attributes: ApproverAttributes!) {
  approverUpdate (id: $id, attributes: $attributes) {
      approver {
        id
        name
        userId
      }
      errors
  }
}

Arguments

{
  "id": "456123",
  "attributes": {
    "name": "",
    "userId": "456123"
  }
}
Name
Type
Description

id

ID

Response

Name
Type
Description

approver

errors

List (String)

Last updated

Was this helpful?