dockStatusId from the API response to call the Get Dock Status API and track the export status.
Additionally, the response provides a download URL. Copy and paste this URL into a browser or API client to download the exported model’s file.
| Method | POST |
|---|---|
| Endpoint | https://{host}/api/public/models/:{modelId}/export |
| Content Type | application/json |
| Authorization | X-api-key - The API key used for authentication. |
Path Parameters
| PARAMETER | DESCRIPTION | TYPE | REQUIRED/OPTIONAL |
|---|---|---|---|
| host | The environment URL. For example, https://agent-platform.domain.ai/ | String | Required |
| modelId | The unique identifier of the model you want to export. | String | Required |
Sample Request
Body Parameters
No parameters are passed.Sample Response
Response Parameters
| PARAMETER | DESCRIPTION | TYPE |
|---|---|---|
| dockStatusId | The unique identifier to track the status of action. For example: import, export, deploy, etc. | String |
| modelId | The unique identifier for the model. | String |
| jobType | Type of job being performed. | String |
| action | The action that is performed on the model. | String |
| status | The current status of the job (IN_PROGRESS, SUCCESS, or FAILED). | String |
| percentageComplete | The percentage of the model export process that is complete. | Number |
| downloadURL | The URL to download the exported model file. | String |