Query
query Autoresponders {
autoresponders {
edges {
cursor
node {
id
name
order
messageSources
conditions {
__typename
... on AutoresponderTierCondition {
__typename
}
}
textContent
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"autoresponders": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"name": "string",
"order": 1,
"messageSources": [
"EMAIL"
],
"conditions": [
{
"__typename": "AutoresponderTierCondition"
}
],
"textContent": "string"
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Queries
autoresponders
List all autoresponders in the workspace, ordered by their configured priority order. Supports cursor-based pagination.
QUERY
autoresponders(first: Int, after: String, last: Int, before: String): AutoresponderConnection!Arguments
first
Int
after
String
last
Int
before
String
Returns
edges
pageInfo
Query
query Autoresponders {
autoresponders {
edges {
cursor
node {
id
name
order
messageSources
conditions {
__typename
... on AutoresponderTierCondition {
__typename
}
}
textContent
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"autoresponders": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"name": "string",
"order": 1,
"messageSources": [
"EMAIL"
],
"conditions": [
{
"__typename": "AutoresponderTierCondition"
}
],
"textContent": "string"
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?

