action stream_io_api_list_push_providers { label: "List push providers" description: "List details of all push providers." provider: stream_io_api method: GET path: "/push_providers" encoding: json output: { type: "object" required: ["duration", "push_providers"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } push_providers: { type: "array" items: { type: "object" required: ["name", "type", "created_at", "updated_at"] properties: { apn_auth_key: { type: "string" } apn_auth_type: { type: "string" } apn_development: { type: "boolean" } apn_host: { type: "string" } apn_key_id: { type: "string" } apn_notification_template: { type: "string" } apn_p12_cert: { type: "string" } apn_team_id: { type: "string" } apn_topic: { type: "string" } created_at: { type: "string" format: "date-time" } description: { type: "string" } disabled_at: { type: "string" format: "date-time" } disabled_reason: { type: "string" } firebase_apn_template: { type: "string" } firebase_credentials: { type: "string" } firebase_data_template: { type: "string" } firebase_notification_template: { type: "string" } firebase_server_key: { type: "string" } huawei_app_id: { type: "string" } huawei_app_secret: { type: "string" } name: { type: "string" } type: { type: "number" } updated_at: { type: "string" format: "date-time" } xiaomi_app_secret: { type: "string" } xiaomi_package_name: { type: "string" } } } } } } }