createApiException
Mutation to create a new APIException instance.
Arguments
Input fields for creating an API exception.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-7801: Received an invalid operationsTeamId.
- KT-CT-7802: The external identifier already exists.
- 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-7811: Received an invalid assignedUserId.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can create 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 CreateApiException($input: CreateAPIExceptionInput!) {
createApiException(input: $input) {
apiException {
...APIExceptionTypeFragment
}
}
}
Variables
{
"input": CreateAPIExceptionInput
}
Response
{
"data": {
"createApiException": {
"apiException": APIExceptionType
}
}
}