action winsms_get_scheduled_messages { label: "Get a list of scheduled SMS messages" description: "Get a list of all scheduled SMS messages that have not yet been sent.\n\nOnly the first 100 scheduled messages will be returned if no ***offset*** and ***limit*** parameters are specified.\n" provider: winsms method: GET path: "/sms/scheduled" encoding: json input: { type: "object" properties: { limit: { type: "string" } offset: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }