Get an Email Recipient

Get the status details for a specific recipient that was sent an e-mail.

HTTP GET

GET /api/2013-12-01/Email/Recipient/[Recipient ID]
Returns information for the given Recipient ID.

Example Request

$ curl -G https://[Site Name].readyop.com/api/2013-12-01/Email/Recipient/[Recipient ID] \
-u "[API Account ID]:[API Token]"

Request Result


{
    "code": 0,
    "status": 200,
    "detail": "Success",
    "timestamp": "2015-09-21T16:08:10+00:00",
    "recipient": {
        "Recipient ID": 16177,
        "Email ID": 941,
        "Contact ID": 5211755,
        "Name": "John Doe",
        "Status": "Delivered",
        "Email": "john@readyop.com",
        "Agency ID": 54,
        "Audit": [
            {
                "Audit ID": 52133,
                "Status": "Queued",
                "Time": 1574122365
            },
            {
                "Audit ID": 52134,
                "Status": "Sent",
                "Time": 1574122368
            },
            {
                "Audit ID": 52135,
                "Status": "Delivered",
                "Time": 1574122368,
                "Detail": {
                    "Timestamp": "2019-11-19T00:12:48.875Z",
                    "Proccessing Time": 1092,
                    "SMTP Response": "250 2.0.0 OK  1574122368 n27si12988209qta.87 - gsmtp",
                    "Reporting MTA": "a44-114.smtp-out.amazonses.com"
                }
            }
        ]
    }
}