createApiExceptionNote
Mutation to create a new APIExceptionNote instance.
Arguments
Input fields for creating an API exception note.
Possible Errors
Allowed Viewers
Required Permissions
Can create api exception notesQuery 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 CreateApiExceptionNote($input: CreateAPIExceptionNoteInput!) {
createApiExceptionNote(input: $input) {
apiException {
...APIExceptionTypeFragment
}
}
}
Variables
{
"input": CreateAPIExceptionNoteInput
}
Response
{
"data": {
"createApiExceptionNote": {
"apiException": APIExceptionType
}
}
}