action evetech_get_characters_character_id_mail { label: "Return mail headers" description: "Return the 50 most recent mail headers belonging to the character that match the query criteria. Queries can be filtered by label, and last_mail_id can be used to paginate backwards\n\n---\nAlternate route: `/dev/characters/{character_id}/mail/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/`\n\nAlternate route: `/v1/characters/{character_id}/mail/`\n\n---\nThis route is cached for up to 30 seconds" provider: evetech method: GET path: "/characters/{character_id}/mail/" encoding: json input: { type: "object" properties: { labels: { type: "string" } last_mail_id: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }