Retrieve email notification attributions

Request

Retrieves a list of email notifications, that have been sent through attribution, for a specified event type.

Security
SecretApiKey or JWT
Path
eventTypestringrequired

Type of event.

curl -i -X GET \
  'https://www.rebilly.com/_mock/catalog/all/send-through-attribution/{eventType}' \
  -H 'REB-APIKEY: YOUR_API_KEY_HERE'

Responses

List of email notifications retrieved.

Headers
Pagination-Totalinteger

Total number of items that match the request. The value is independent of limit, including when limit is 0.

Example:332
Pagination-Limitinteger

Maximum number of items per page.

Example:100
Pagination-Offsetinteger

Specifies the starting point within the collection of resource results. For example, a request with limit=20 retrieves and displays the first 20 results on a page. A following request with limit=20 and offset=20, retrieves the next page of 20 results.

Example:2
Bodyapplication/json
Array [
eventTypestring(EventType)read-only

Type of Rebilly event.

Enum:"account-password-reset-requested""account-verification-requested""aml-list-possibly-matched""application-instance-disabled""application-instance-enabled""balance-transaction-settled""coupon-application-removed""coupon-applied""coupon-expiration-modified""coupon-expired"
actionIdstring, (uuid)

Action ID of the email notification.

versionIdstring, (uuid)

Version ID of the email notification.

sentinteger, >= 0

Number of email notifications that have been sent.

goalinteger, >= 0

Target number of email notifications to send.

]
Response
[ { "eventType": "account-password-reset-requested", "actionId": "4a2794ff-94cb-4bac-8d36-d5fb36c563a0", "versionId": "14707576-2549-4848-82ed-f68f8a1b47c7", "sent": 0, "goal": 0 } ]