action winsms_get_incoming_messages { label: "Get a list of incoming SMS messages" description: "Get a list of all incoming SMS messages received by the account.\n\nOnly the first 100 incoming messages will be returned if no ***offset*** and ***limit*** parameters are specified.\n" provider: winsms method: GET path: "/sms/incoming" encoding: json input: { type: "object" properties: { limit: { type: "string" } offset: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }