approverCreate

Graphql fields and variables for the approverCreate mutation

Create an approver

Scope required: security:write

For a complete list of input attributes see the ApproverAttributes type

mutation approverCreate ($attributes: ApproverAttributes!) {
  approverCreate (attributes: $attributes) {
      approver {
        id
        name
        userId
      }
      errors
  }
}

Arguments

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

attributes

Response

Name
Type
Description

approver

errors

List (String)

Last updated

Was this helpful?