- List referral code redemptions
The per-redemption ledger for the caller organisation's codes, with the stage each redemption has reached.
Rows are anonymised: no email, name, phone, address or user id, and id is the redemption's own identifier, never the driver's. Because every row is scoped to a code the organisation owns and carries no identifier, figures are exact at every volume — a code with a single redemption reports one row.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/referral_code_redemptions
- Live API for both production and sandbox requests.https://api.ev.energy/v2/referral_code_redemptions
- Staging server for internal testing only.https://api-staging.ev.energy/v2/referral_code_redemptions
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/referral_code_redemptions?page_before=xmpl01HNFZM7Q8FXASZXYZ6XM3TQRR&page_after=xmpl01HNFZM7Q8FXASZXYZ6XM3TQRR&page_size=10&referral_code_id=prom01JZQ8V5T7MKXR9NBCDEFGHJ4A&stage=REDEEMED&redeemed_at__gte=2019-08-24T14%3A15%3A22Z&redeemed_at__lte=2019-08-24T14%3A15%3A22Z' \
-H 'Accept-Language: string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-Version: 2'Returns the anonymised redemption rows.
Provides links to the previous and next pages of data, if they exist.
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
Unique identifier for the redemption. Never the driver's identifier.
Reference to the code that was redeemed.
The code string, denormalised so a ledger renders without a second read.
REDEEMED — the driver signed up with the code. QUALIFIED — the driver has since completed the qualifying charge, which is what earns commission.
[ { "id": "prdm01JZQ8V5T7MKXR9NBCDEFGHJ4B", "url": "https://api.ev.energy/v2/referral_code_redemptions/prdm01JZQ8V5T7MKXR9NBCDEFGHJ4B", "referral_code": "https://api.ev.energy/v2/referral_codes/prom01JZQ8V5T7MKXR9NBCDEFGHJ4A", "code": "SPRING24", "stage": "QUALIFIED", "redeemed_at": "2026-07-10T08:30:00Z", "qualified_at": "2026-07-18T19:04:00Z" } ]