Download an exact managed Skill package

POST
/v1/skill/package/download

Return canonical ZIP bytes as bounded base64 with their content-addressed reference.

Authorization

BearerAuth
AuthorizationBearer <token>

Static bearer token used when local Server authentication is enabled.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/skill/package/download" \  -H "Content-Type: application/json" \  -d '{    "scope_id": "string",    "artifact": {      "family": "string",      "artifact_id": "string",      "revision": 1    }  }'
{  "package": {    "tree_digest": "string",    "archive_digest": "string",    "file_count": 1,    "uncompressed_size": 1,    "archive_size": 1  },  "archive_base64": "string"}