action bulksms_get_blocked_numbers { label: "List blocked numbers" provider: bulksms method: GET path: "/blocked-numbers" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } "min-id": { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" required: ["id", "phoneNumber"] properties: { id: { type: "number" format: "int32" description: "A unique identifier that is assigned when the BlockedNumber is created." } phoneNumber: { type: "object" } } } }