-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Acceptance Criteria
GIVEN a running server with an API key for a client's ActionKit account
- THEN EVERY HOUR, the server will retrieve all events associated with that account and all RSVPs associated with each event
- AND THEN the server will store a record of any new events or RSVPs in the database (including a reference to the Event/RSVP's id in actionkit)
Definitions
[stub]
- the action kit api is here: https://roboticdogs.actionkit.com/docs/manual/api/rest/index.html
- the call to retrieve all the events in an event campaign is @@TBD@@
- the shape of the response to that request is @@TBD@@
- our service will represent an event as follows: @@TBD@@
- our service will respresent an attendance as follows: @@TBD@@
- our service will represent a person as follows: @@TBD@@
Out of Scope
We will not listen for events in a specific campaign. Rather we will listen for all events associated with a given clients ActionKit account.