Sent Emails
The SentEmailService provides read-only access to emails sent by the Firetiger platform (for example, issue and investigation notifications).
Service: firetiger.email.v1.SentEmailService
Access: Read-only
Methods
| Method | Description |
|---|---|
| ListSentEmails | List emails sent by the platform |
ListSentEmails
List emails sent by the Firetiger platform, most recent first.
POST /firetiger.email.v1.SentEmailService/ListSentEmails
REST alternative:
GET /v1/sent-emails
| Field | Type | Required | Description |
|---|---|---|---|
page_size |
int | No | Maximum number of emails to return |
page_token |
string | No | Pagination token from a previous response |
curl -X POST "https://api.cloud.firetiger.com/firetiger.email.v1.SentEmailService/ListSentEmails" \
-u "$USERNAME:$PASSWORD" \
-H "Content-Type: application/json" \
-d '{"page_size": 20}'
{
"sent_emails": [
{
"name": "sent-emails/em-abc123",
"to": "user@example.com",
"subject": "Issue resolved: auth-timeout",
"createTime": "2024-06-15T14:30:00Z"
}
]
}