createApiExceptionEvent
Mutation to create a new APIExceptionEvent instance.
Arguments
Input fields for creating an API exception event.
Examples
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 CreateApiExceptionEvent($input: CreateAPIExceptionEventInput!) {
createApiExceptionEvent(input: $input) {
apiExceptionEvent {
...APIExceptionEventTypeFragment
}
}
}
Variables
{
"input": CreateAPIExceptionEventInput
}
Response
{
"data": {
"createApiExceptionEvent": {
"apiExceptionEvent": APIExceptionEventType
}
}
}