Skip to main content
GET
/
activity-definitions
List activity definitions
curl --request GET \
  --url https://app.azalt.co/api/v1/activity-definitions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "uiCode": "<string>",
    "calcCode": "<string>",
    "inputs": [
      {
        "name": "<string>",
        "type": "string",
        "required": true,
        "example": "<string>",
        "editor": {
          "type": "select",
          "options": [
            {
              "label": "<string>",
              "value": "<string>"
            }
          ]
        }
      }
    ],
    "organizationId": "<string>",
    "metadataSchema": {},
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.azalt.co/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

id
string
required
name
string
required
description
string | null
required
uiCode
string
required
calcCode
string
required
inputs
object[]
required
organizationId
string | null
required
metadataSchema
object
required
createdAt
string
required
updatedAt
string
required