GET api/EmailLogs/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
EmailLog| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| EmailAddress | string |
None. |
|
| DateCreated | date |
None. |
|
| Sent | boolean |
None. |
|
| DateSent | date |
None. |
|
| EmailType | integer |
None. |
|
| ID1 | string |
None. |
|
| ID2 | string |
None. |
|
| IsPanicSA | boolean |
None. |
|
| IsSASchools | boolean |
None. |
|
| IsTicketMate | boolean |
None. |
|
| IsSABoxing | boolean |
None. |
|
| IsPanicSABackend | boolean |
None. |
|
| IsSASchoolsBackend | boolean |
None. |
|
| IsTicketmateBackend | boolean |
None. |
|
| IsSABoxingBackend | boolean |
None. |
|
| IsSchoolBackend | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"EmailAddress": "sample string 2",
"DateCreated": "2025-12-09T04:04:31.8287417+02:00",
"Sent": true,
"DateSent": "2025-12-09T04:04:31.8287417+02:00",
"EmailType": 1,
"ID1": "sample string 4",
"ID2": "sample string 5",
"IsPanicSA": true,
"IsSASchools": true,
"IsTicketMate": true,
"IsSABoxing": true,
"IsPanicSABackend": true,
"IsSASchoolsBackend": true,
"IsTicketmateBackend": true,
"IsSABoxingBackend": true,
"IsSchoolBackend": true
}
application/xml, text/xml
Sample:
<EmailLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PanicSAAPI.Database"> <DateCreated>2025-12-09T04:04:31.8287417+02:00</DateCreated> <DateSent>2025-12-09T04:04:31.8287417+02:00</DateSent> <EmailAddress>sample string 2</EmailAddress> <EmailType>1</EmailType> <ID1>sample string 4</ID1> <ID2>sample string 5</ID2> <IsPanicSA>true</IsPanicSA> <IsPanicSABackend>true</IsPanicSABackend> <IsSABoxing>true</IsSABoxing> <IsSABoxingBackend>true</IsSABoxingBackend> <IsSASchools>true</IsSASchools> <IsSASchoolsBackend>true</IsSASchoolsBackend> <IsSchoolBackend>true</IsSchoolBackend> <IsTicketMate>true</IsTicketMate> <IsTicketmateBackend>true</IsTicketmateBackend> <Sent>true</Sent> <id>1</id> </EmailLog>