message
Get the details of a transactional message with a given external ID.
Arguments
The ID of the transactional message.
Returns
Message!Possible Errors
Allowed Viewers
Query 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 Message($messageId: ID!) {
message(messageId: $messageId) {
account {
...AccountTypeFragment
}
accountUser {
...AccountUserTypeFragment
}
channel
dispatchedAt
failedAt
id
}
}
Variables
{
"messageId": "47741579"
}
Response
{
"data": {
"message": {
"account": AccountType,
"accountUser": AccountUserType,
"channel": "EMAIL",
"dispatchedAt": "1984-02-14T12:54:28.053301+00:00",
"failedAt": "1976-03-12T18:09:13.520108+00:00",
"id": "93859516"
}
}
}