This endpoint allows you to get email activity/results.
URL:
Method:
HTTP Header Parameters:
* = Required parameters
Parameter | Value |
* action | getEmailActivity |
* authorization | Basic [YOUR API KEY] |
JSON Parameters:
* = Required parameters
Parameter | Value |
rowsPerPage | Default value is 100. Indicates how many rows to retreive per page |
currentPage | 1 - The current page you want to retrieve |
start_date * | A datetime string indicating the date and time of the desired activity |
end_date * | A datetime string indicating the end date and time of the desired activity |
status | A valid activity result status (Optional) |
ID | A valid customer ID (Optional) |
Example Request |
POST https://vortext.ca/vapi/1.0/ -H "Authorization: Basic [your API key]" -H "Action: getEmailActivity" -D { "rowsPerPage":"100", "currentPage":"1", "start_date":"2022-10-01 09:00:00", "end_date":"2022-10-01 11:00:00", "status":"Opened", "ID":"84546" } |