🧑🤝🧑Pessoas
Retornar participantes
GET
https://www.even3.com.br/api/v1/attendees/:id
Esse método retorna todos os participantes de um evento.
Path Parameters
Name
Type
Description
id
string
ID do participante
Headers
Name
Type
Description
Authorization-Token*
string
Token de autenticação obtido nas configurações do evento.
{
"data": [
{
"id_attendees": 9,
"id_event": 1,
"checkin_code": 11,
"name": "Renan José Guedes",
"bagde_name": "Renan Guedes",
"email": "[email protected]",
"gender": "M",
"photo": "https://graph.facebook.com/1569985586409400/picture?width=150&height=150",
"document": "000.000.000-00",
"confirmed": false,
"registration_category": "",
"registration_date": "",
"registration_hour": ""
},
{
"id_attendees": 24,
"id_event": 1,
"checkin_code": 25,
"name": "Luciana Corrêa",
"bagde_name": "Luciana Corrêa",
"email": "[email protected]",
"gender": "F",
"photo": " ",
"document": "000.000.000-00",
"confirmed": false,
"registration_category": "",
"registration_date": "",
"registration_hour": ""
},
{
"id_attendees": 25,
"id_event": 1,
"name": "Germana Marques",
"bagde_name": "Germana Marques",
"email": "[email protected]",
"gender": "F",
"photo": " ",
"document": "123456789",
"confirmed": false,
"registration_category": "Geral",
"registration_date": "20/08/2022",
"registration_hour": "11:50"
},
],
"count": 3
}
Inserir um participante
POST
https://www.even3.com.br/api/v1/attendees/create
Headers
Name
Type
Description
Authorization-Token*
string
Token de autenticação obtido nas configurações do evento
Request Body
Name
Type
Description
attendee
string
Objeto Atendee
"Data entered successfully."
Attendee
{
"name": "string",
"bagde_name": "string",
"email": "string",
"gender": "string",
"photo": "string",
"registration_confirmed": true,
"registration": {
"id_ticket_price": 0,
"price": 0
}
}
Last updated
Was this helpful?