Skip to main content
GET
/
waitlist
/
{id}
curl -X GET https://api.arca.example.com/waitlist/456e7890-e12b-34d5-c678-901234567def
{
  "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",
  "posicaoNaLista": 5,
  "situacao": "Ativo"
}
Retrieve a specific waitlist entry by ID, including their position in the queue.

Authentication

This endpoint does not require authentication.

Path Parameters

id
string
required
The waitlist entry’s unique identifier (UUID).

Response

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.
posicaoNaLista
number
The person’s position in the waitlist queue (based on active entries created before this one).
situacao
string
Status of the entry: “Ativo” or “Inativo”.
curl -X GET https://api.arca.example.com/waitlist/456e7890-e12b-34d5-c678-901234567def
{
  "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",
  "posicaoNaLista": 5,
  "situacao": "Ativo"
}

Build docs developers (and LLMs) love