Skip to main content
GET
/
api
/
admin
/
journeys
cURL
curl --request GET \
  --url http://localhost:3001/api/admin/journeys/ \
  --header 'Authorization: <api-key>'
{
  "journeys": [
    {
      "id": "<string>",
      "workspaceId": "<string>",
      "name": "<string>",
      "updatedAt": 123,
      "createdAt": 123,
      "canRunMultiple": true,
      "definition": {
        "entryNode": {
          "segment": "<string>",
          "child": "<string>",
          "reEnter": true
        },
        "exitNode": {},
        "nodes": [
          {
            "id": "<string>",
            "variant": {
              "seconds": 123
            },
            "child": "<string>"
          }
        ]
      },
      "draft": {
        "nodes": [
          {
            "id": "<string>",
            "data": {
              "nodeTypeProps": {
                "variant": {
                  "segment": "<string>",
                  "child": "<string>",
                  "reEnter": true
                }
              }
            }
          }
        ],
        "edges": [
          {
            "source": "<string>",
            "target": "<string>",
            "data": {
              "disableMarker": true
            }
          }
        ]
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dittofeed.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Query Parameters

workspaceId
string
required
getPartial
boolean
ids
string[]
resourceType
Available options:
Declarative

Response

200 - application/json

Default Response

journeys
object[]
required