action sendgrid_get_contactdb_recipients { label: "Retrieve recipients" description: "**This endpoint allows you to retrieve all of your Marketing Campaigns recipients.**\n\nBatch deletion of a page makes it possible to receive an empty page of recipients before reaching the end of\nthe list of recipients. To avoid this issue; iterate over pages until a 404 is retrieved." provider: sendgrid method: GET path: "/contactdb/recipients" encoding: json input: { type: "object" properties: { page: { type: "integer" } page_size: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["recipients"] properties: { recipients: { type: "array" items: { type: "object" } } } } }