updateApiException
Mutation to update an existing APIException instance.
Arguments
Input fields for updating an API exception.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-7801: Received an invalid operationsTeamId.
- KT-CT-7803: Received an invalid apiExceptionId.
- KT-CT-7804: No fields present in the input for updating the APIException.
- KT-CT-7805: Too many tags associated with this API Exception.
- KT-CT-7806: Cannot create duplicate tags for the same API exception.
- KT-CT-7809: Update results in no changes to API Exception.
- KT-CT-7811: Received an invalid assignedUserId.
- KT-CT-7812: Support user is inactive.
- KT-CT-7814: Received an invalid accountNumber.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can update api exceptionsQuery 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 UpdateApiException($input: UpdateAPIExceptionInput!) {
updateApiException(input: $input) {
apiException {
...APIExceptionTypeFragment
}
}
}
Variables
{
"input": UpdateAPIExceptionInput
}
Response
{
"data": {
"updateApiException": {
"apiException": APIExceptionType
}
}
}