action stream_io_api_delete_push_provider { label: "Delete a push provider" description: "Delete a push provider from v2 with multi bundle/package support. v1 isn't supported in this endpoint" provider: stream_io_api method: DELETE path: "/push_providers/{type}/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } type: { type: "string" } } required: ["name", "type"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }