GET
/
v1
/
templates
curl --request GET \
  --url https://api.themagicdrip.com/v1/templates \
  --header 'x-api-key: <api-key>'
{
  "templates": [
    {
      "templateId": "<string>",
      "name": "<string>",
      "sequence": [
        {
          "nodeId": 1,
          "delay": 5000,
          "taskType": {
            "typeId": 1,
            "typeName": "Type A"
          },
          "taskData": {
            "note": "Optional note",
            "message": "Hello, world!"
          },
          "neighbors": [
            {
              "nodeId": 2
            },
            {
              "nodeId": 3
            }
          ]
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Response

200
application/json
Template response
templates
object[]
required

List of Templates