action signl4_get_scripts_inventory_parsed_script_id { label: "Returns an inventory script by its id." description: "Gets the script specified by the passed script id." provider: signl4 method: GET path: "/scripts/inventory/parsed/{scriptId}" encoding: json input: { type: "object" properties: { language: { type: "string" } scriptId: { type: "string" } } required: ["scriptId"] additionalProperties: false } output: { type: "object" properties: { config: { type: "object" } customScriptDescription: { type: "string" } customScriptName: { type: "string" } enabled: { type: "boolean" } eventPattern: { type: "object" } instanceId: { type: "string" } lastModified: { type: "string" format: "date-time" } runtimeInformation: { type: "object" properties: { status: { type: "integer" format: "int32" enum: [0, 1, 2, 3, -1] } statusMessage: { type: "string" } } additionalProperties: false } scriptId: { type: "string" } scriptName: { type: "string" } subscriptionId: { type: "string" } teamId: { type: "string" } } additionalProperties: false } }