export_project
Queue a portable .btx archive export for a Bridge Town project. Returns job_id and status; poll get_export(job_id) for completion and the pre-signed download URL.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
project_id | str | Yes | — | |
include_runs | int | No | 5 | |
include_dashboards | bool | No | True |
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
job_id(string)status(string)project_id(string)message(string)warning(null)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "export_project", "arguments": { "project_id": "forecasts", "include_runs": 5, "include_dashboards": true }}Response
Section titled “Response”{ "job_id": "bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb", "status": "queued", "project_id": "forecasts", "message": "Export queued.", "warning": null}- Module:
Exports - Requires authentication via API token or Auth0 JWT.