Vai al contenuto principale
GET
/
api
/
v1
/
organizations
/
{organizationid}
/
workflows
/
{workflowid}
/
proxy
Proxy: fetch workflow data (GET only)
curl --request GET \
  --url https://app.aegister.com/api/v1/organizations/{organizationid}/workflows/{workflowid}/proxy \
  --header 'X-Aegister-Token: <api-key>'
{
  "framework": "example security framework",
  "questions": [
    {
      "id": "Q1",
      "text": "Do you have backups?"
    }
  ]
}
Fetch workflow data and questions through Aegister’s proxy. Path params
  • organizationid β€” Organization ID
  • workflowid β€” Workflow ID
Query params
  • action (optional) β€” forwarded upstream (defaults to get_framework)
  • Any custom key/value pairs β€” forwarded upstream as-is
Example
curl -H "X-Aegister-Token: <TOKEN>" \
  "https://app.aegister.com/api/v1/organizations/7/workflows/WfI1ZG8MdmAVowB7Av2w6/proxy?action=get_framework"

Autorizzazioni

X-Aegister-Token
string
header
obbligatorio

Parametri del percorso

organizationid
integer
obbligatorio
workflowid
string
obbligatorio

Parametri della query

action
string

Optional action for the workflow (default: get_framework).

Risposta

Arbitrary JSON returned by the upstream Activepieces workflow.