action sendgrid_get_campaigns_campaign_id_schedules { label: "View Scheduled Time of a Campaign" description: "**This endpoint allows you to retrieve the date and time that a campaign has been scheduled to be sent.**" provider: sendgrid method: GET path: "/campaigns/{campaign_id}/schedules" encoding: json output: { type: "object" required: ["send_at"] properties: { send_at: { type: "integer" format: "int64" } } } }