Status of email notifications sent from Elevate with delivery details as provided by the email distribution service
Elevate Notifications API (1.0)
Provides read-only access to the current status of email notifications sent from Elevate. NOTE: this service is only effective if using Amazon SES distribution
Download OpenAPI description
Languages
Servers
https://rest.elevatebilling.com/v1
Query
Results to return per page
Example: pageSize=100
Comma-delimited list of the fields to sort by - defaults to ascending order, suffix :desc to change
Example: sort=id,name | name:desc
Comma-delimited list of the field(s) to return if only a subset is required
Example: fields=id,name
Filter by email notifications created before or after this timestamp
Example: createdDateTime=yyyy-MM-ddTHH:mm:ssZ | lt:yyyy-MM-ddTHH:mm:ssZ | gt:yyyy-MM-ddTHH:mm:ssZ
Filter by email notification status updated before or after this timestamp
Example: updatedDateTime=yyyy-MM-ddTHH:mm:ssZ | lt:yyyy-MM-ddTHH:mm:ssZ | gt:yyyy-MM-ddTHH:mm:ssZ
Filter by email notification status
Enum"SENT""DELIVERED""BOUNCED""COMPLAINT""ERROR""ACKNOWLEDGED""RETRY"
- https://rest.elevatebilling.com/v1/email-status
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v1/email-status?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&createdDateTime=yyyy-MM-ddTHH%3Amm%3AssZ+%2C+lt%3Ayyyy-MM-ddTHH%3Amm%3AssZ+%2C+gt%3Ayyyy-MM-ddTHH%3Amm%3AssZ&updatedDateTime=yyyy-MM-ddTHH%3Amm%3AssZ+%2C+lt%3Ayyyy-MM-ddTHH%3Amm%3AssZ+%2C+gt%3Ayyyy-MM-ddTHH%3Amm%3AssZ&billRunType=NORMAL&billRunId=0&status=SENT&bounceType=PERMANENT' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "id": 1, "recipientEmail": "string", "createdDateTime": "2019-08-24T14:15:22Z", "updatedDateTime": "2019-08-24T14:15:22Z", "status": "SENT", "message": "failed, 5.3.0, smtp; 550 RCPT TO:<xxxxxx@imperatives.co.uk> User unknown", "bounceType": "PERMANENT", "billRunType": "NORMAL", "billRunId": 1, "customerId": 1, "siteId": 1, "contactId": 1 } ]