Skip to main content
DELETE
/
waitlist
/
{id}
curl -X DELETE 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"
}
Delete a waitlist entry from the system.

Authentication

This endpoint does not require authentication.

Path Parameters

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

Response

Returns the deleted waitlist entry object.
id_Lista
string
The deleted 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 was active.
createdAt
string
Timestamp when the entry was created.
updatedAt
string
Timestamp when the entry was last updated.
curl -X DELETE 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"
}

Build docs developers (and LLMs) love