action signl4_put_scripts_instances_instance_id_data { label: "Updates custom data of a given script instance which includes its display name." description: "Updates the specified script instance." provider: signl4 method: PUT path: "/scripts/instances/{instanceId}/data" encoding: json input: { type: "object" properties: { customScriptDescription: { type: "string" } customScriptName: { type: "string" } instanceId: { type: "string" } scriptId: { 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 } }