action signl4_get_scripts_instances_instance_id { label: "Returns all information about a given script instance which includes its runtime status." description: "Gets the script instance specified by the passed instance id." provider: signl4 method: GET path: "/scripts/instances/{instanceId}" encoding: json input: { type: "object" properties: { instanceId: { type: "string" } } required: ["instanceId"] 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 } }