Télécharger le contenu d'une version de skill
Télécharge le contenu d'une version de skill sous forme d'archive zip.
Parameters
VersionDownloadParams parameters
required string skillIDPath param: Unique identifier for the skill.
Path param: Unique identifier for the skill.
The format and length of IDs may change over time.
required string versionPath param: Identifies the skill version by its version ID.
Path param: Identifies the skill version by its version ID.
Requests carrying the skills-2025-10-02 beta header address versions by their Unix epoch timestamp instead (e.g., "1759178010641129").
IReadOnlyList<AnthropicBeta> betasHeader param: Optional header to specify the beta version(s) you want to use.
Header param: Optional header to specify the beta version(s) you want to use.
string workspaceIDHeader param: Optional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).
Header param: Optional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).
Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.
VersionDownloadParams parameters = new()
{
SkillID = "skill_id",
Version = "version",
};
var response = await client.Beta.Skills.Versions.Download(parameters);
Console.WriteLine(response);