Endpoints
List Participants
Returns registered participants for a specific event.
GET
/v1/partner/events/:id/participantscurl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
https://api.intervals.run/v1/partner/events/e72tuv901wxy234/participantsPath Parameters
idstringrequiredThe event ID.
Required Scope
read:participants{
"data": [
{
"_id": "p89xyz345uvw678",
"eventId": "e72tuv901wxy234",
"eventRunId": "r41abc567def890",
"email": "runner@example.com",
"name": "Alex Johnson",
"registrationType": "online",
"registrationStatus": "confirmed",
"source": "api"
}
]
}curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
https://api.intervals.run/v1/partner/events/e72tuv901wxy234/participants{
"data": [
{
"_id": "p89xyz345uvw678",
"eventId": "e72tuv901wxy234",
"eventRunId": "r41abc567def890",
"email": "runner@example.com",
"name": "Alex Johnson",
"registrationType": "online",
"registrationStatus": "confirmed",
"source": "api"
}
]
}