action sendgrid_get_mail_settings { label: "Retrieve all mail settings" description: "**This endpoint allows you to retrieve a list of all mail settings.**\n\nEach setting will be returned with an `enabled` status set to `true` or `false` and a short description that explains what the setting does." provider: sendgrid method: GET path: "/mail_settings" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["result"] properties: { result: { type: "array" description: "The list of all mail settings." items: { type: "object" required: ["title", "enabled", "name", "description"] properties: { description: { type: "string" description: "A description of the mail setting." } enabled: { type: "boolean" description: "Indicates if this mail setting is currently enabled." } name: { type: "string" description: "The name of the mail setting." } title: { type: "string" description: "The title of the mail setting." } } } } } } }