completeApproval
Complete an approval by marking it as approved or rejected.
Arguments
Input for completing the approval.
Possible Errors
Allowed Viewers
Required Permissions
Can complete approvalsQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation CompleteApproval($input: CompleteApprovalInputType!) {
completeApproval(input: $input) {
completedApproval {
...CompletedApprovalFragment
}
}
}
Variables
{
"input": CompleteApprovalInputType
}
Response
{
"data": {
"completeApproval": {
"completedApproval": CompletedApproval
}
}
}