List run artifacts
Lists files produced by a run, with short-lived download URLs.
Organization or project Access Key created in the Dynamiq console. Used for deployed-app (Runs API), AI Gateway, traces collector, and management API requests. Send as Authorization: Bearer <access-key>.
In: header
Path Parameters
App UUID.
Run UUID.
Query Parameters
Page number (1-based).
Number of items per page.
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/runs/497f6eca-6276-4993-bfeb-53cbbbba6f08/artifacts"{
"data": [
{
"id": "0c1d2e3f-4a5b-4c6d-8e7f-8091a2b3c4d5",
"type": "file",
"download_url": "https://storage.getdynamiq.ai/artifacts/0c1d2e3f...?sig=...",
"name": "triage-summary.pdf",
"size": 18231,
"mime_type": "application/pdf",
"saved_at": "2026-06-10T09:15:33Z"
}
],
"pagination": {
"page": 1,
"page_size": 25,
"page_count": 1,
"total_count": 1
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized"
}
}{
"error": {
"code": "not_found",
"message": "Not Found"
}
}Get a trigger event
Returns a single trigger event, including its raw payload.
Check requirements status for an end user
Returns whether all end-user requirements of the app are satisfied for the given user, together with the list of unsatisfied requirements. A connection requirement counts as satisfied when the user has an active connection for it; an action connector account requirement counts as satisfied when the user has linked an account for it. The app is identified by the hostname. Private apps require an Access Key; public apps can be called without credentials.