GET
/
api
/
v1
/
realms
/
{realmId}
/
quests
/
{questId}
/
tasks
curl --request GET \
  --url https://api.drip.re/api/v1/realms/{realmId}/quests/{questId}/tasks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "questId": "<string>",
      "name": "<string>",
      "type": "<string>",
      "description": null,
      "config": null,
      "triggers": [
        {
          "id": "<string>",
          "taskId": "<string>",
          "type": "<string>",
          "config": null,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "conditions": [
        {
          "id": "<string>",
          "taskId": "<string>",
          "type": "<string>",
          "config": null,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "actions": [
        {
          "id": "<string>",
          "taskId": "<string>",
          "type": "<string>",
          "config": null,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "fromTransitions": [
        {
          "id": "<string>",
          "fromTaskId": "<string>",
          "toTaskId": null,
          "condition": null,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "toTransitions": [
        {
          "id": "<string>",
          "fromTaskId": "<string>",
          "toTaskId": null,
          "condition": null,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "hasNextPage": false,
    "hasPreviousPage": false,
    "startCursor": "<string>",
    "endCursor": "<string>",
    "totalCount": 123
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

realmId
string
required

Query Parameters

take
default:
25
from
string

Response

200
application/json
Default Response
data
any[]
meta
any