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>"
      }
    ],
    "organizationId": "<string>",
    "metadataSchema": {},
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

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