action stream_io_api_test_campaign { label: "Test campaign" description: "Test a campaign" provider: stream_io_api method: POST path: "/campaigns/{id}/test" encoding: json input: { type: "object" properties: { id: { type: "string" } users: { type: "array" items: { type: "string" } } } required: ["id", "users"] additionalProperties: false } output: { type: "object" required: ["duration", "status"] properties: { details: { type: "string" } duration: { type: "string" } results: { type: "object" description: "Result of the test per user" } status: { type: "string" } } } }