isCustomerEligibleToGiveFeedbackFollowingEmail
Check if customer is eligible to give feedback following an email conversation.
Arguments
Possible Errors
Allowed Viewers
Required Permissions
Can check customer feedback eligibilityQuery 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.
query IsCustomerEligibleToGiveFeedbackFollowingEmail(
$accountNumber: String!,
$accountUserNumber: String!,
$conversationClosedAt: DateTime!,
$inkConversationId: Int!
) {
isCustomerEligibleToGiveFeedbackFollowingEmail(
accountNumber: $accountNumber,
accountUserNumber: $accountUserNumber,
conversationClosedAt: $conversationClosedAt,
inkConversationId: $inkConversationId
)
}
Variables
{
"accountNumber": "A-72A0FF26",
"accountUserNumber": "U-7540547B",
"conversationClosedAt": "1978-10-31T17:55:39.446728+00:00",
"inkConversationId": 63327055
}
Response
{
"data": {
"isCustomerEligibleToGiveFeedbackFollowingEmail": true
}
}