added
API Endpoint Optimizations I
February 4th, 2021
Added email to the GET participants response
New query parameter within GET /participants - email
GET /participants - email- Allows you to specify the email, and we return the same payload as the existing GET/participants response, however it is limited to the participant associated with the email that was provided.
New dedicated endpoint to retrieve participants by email - GET /participants/:email
GET /participants/:email- This is an alternative to using the email query parameter described above within the
GET /participantsendpoint. It is a lighter-weight endpoint that enables you to filter participants by email. We will only respond with email andparticipant_code.
New query parameter within GET /trades - client_trade_id
GET /trades - client_trade_id- Allows you to specify the client_trade_id, and we return the same payload as the existing
GET /tradesresponse, however it is limited to the trade associated with theclient_trade_idthat was provided.
All changes reflected in our API Documentation.
