Skip to main content
GET
/
waitlist
curl -X GET https://api.arca.example.com/waitlist
[
  {
    "id_Lista": "456e7890-e12b-34d5-c678-901234567def",
    "nomeRegistro": "Maria Silva",
    "nomeSocial": "Maria",
    "dataNascimento": "1990-05-15T00:00:00.000Z",
    "telefonePessoal": "11987654321",
    "contatoEmergencia": "11912345678",
    "enderecoRua": "Rua das Flores",
    "enderecoNumero": "123",
    "enderecoBairro": "Centro",
    "enderecoCidade": "São Paulo",
    "enderecoEstado": "SP",
    "enderecoCEP": "01234567",
    "id_Genero": 2,
    "id_CorPele": 1,
    "id_Escolaridade": 3,
    "isActive": true,
    "createdAt": "2024-03-15T10:30:00.000Z",
    "updatedAt": "2024-03-15T10:30:00.000Z"
  }
]
Retrieve all waitlist entries, ordered by creation date (most recent first).

Authentication

This endpoint does not require authentication.

Response

Returns an array of waitlist entry objects.
id_Lista
string
The waitlist entry’s unique identifier (UUID).
nomeRegistro
string
Registry name.
nomeSocial
string
Social name.
dataNascimento
string
Date of birth in ISO format.
telefonePessoal
string
Personal phone number.
contatoEmergencia
string
Emergency contact phone number.
enderecoRua
string
Street address.
enderecoNumero
string
Address number.
enderecoBairro
string
Neighborhood.
enderecoCidade
string
City.
enderecoEstado
string
State code (2 characters).
enderecoCEP
string
Postal code (CEP, 8 digits).
id_Genero
number
Gender ID.
id_CorPele
number
Skin color ID.
id_Escolaridade
number
Education level ID.
isActive
boolean
Whether the entry is active in the waitlist.
createdAt
string
Timestamp when the entry was created.
updatedAt
string
Timestamp when the entry was last updated.
curl -X GET https://api.arca.example.com/waitlist
[
  {
    "id_Lista": "456e7890-e12b-34d5-c678-901234567def",
    "nomeRegistro": "Maria Silva",
    "nomeSocial": "Maria",
    "dataNascimento": "1990-05-15T00:00:00.000Z",
    "telefonePessoal": "11987654321",
    "contatoEmergencia": "11912345678",
    "enderecoRua": "Rua das Flores",
    "enderecoNumero": "123",
    "enderecoBairro": "Centro",
    "enderecoCidade": "São Paulo",
    "enderecoEstado": "SP",
    "enderecoCEP": "01234567",
    "id_Genero": 2,
    "id_CorPele": 1,
    "id_Escolaridade": 3,
    "isActive": true,
    "createdAt": "2024-03-15T10:30:00.000Z",
    "updatedAt": "2024-03-15T10:30:00.000Z"
  }
]

Build docs developers (and LLMs) love