action visualstudio_get_template_info_route { label: "GetTemplateInfoRoute" provider: visualstudio method: GET path: "/api/v1/Prebuilds/template/{environmentId}" encoding: json input: { type: "object" properties: { environmentId: { type: "string" format: "uuid" } } required: ["environmentId"] additionalProperties: false } output: { type: "object" properties: { branchName: { type: "string" } commitId: { type: "string" } id: { type: "string" } isPrebuild: { type: "boolean" } lastUsedTime: { type: "string" format: "date-time" } logicalSkus: { type: "array" items: { type: "string" } } prebuildHash: { type: "string" } repoId: { type: "integer" format: "int64" } templateStatus: { type: "string" } } additionalProperties: false } }