# Email Detail / Status

**HTTP Method** : <mark style="color:green;">**`GET`**</mark>&#x20;

**Endpoint URL :** [**`https://email.ocatelkom.co.id/api/v1/email/status/(fill_with_email_id)`**](https://email.ocatelkom.co.id/api/v1/email/status/\(fill_with_email_id\))

**Response**

<table><thead><tr><th width="235">Property</th><th>Type</th></tr></thead><tbody><tr><td><code>email</code></td><td>String (Destination Email)</td></tr><tr><td><code>message_body</code></td><td>String</td></tr><tr><td><code>created_at</code></td><td>ISO Date</td></tr><tr><td><code>status</code></td><td>String (status of email. opened, delivered, failed, etc)</td></tr><tr><td><code>msg_id</code></td><td>String</td></tr></tbody></table>

```json
{
    "status": true,
    "data": {
        "email": "ocaxxxxx@gxxx.com",
        "message_body": "<p>Oca Message</p>",
        "created_at": "2020-03-10T11:00:00.000Z",
        "status": "opened",
        "msg_id": "xxxxhu7f900sdr8xxxx"
    }
}
```
