Skip to main content
GET
/
v1
/
jobs
/
{id}
/
applications
curl -X GET "https://tallentu.com/api/v1/jobs/job_123/applications?limit=50" \
  -H "Authorization: Bearer <token>"
{
  "data": [
    {
      "candidate_id": "user_123",
      "name": "John Doe",
      "email": "[email protected]",
      "stage_id": "col_123",
      "stage_title": "Interview",
      "created_at": "2023-10-27T10:00:00.000Z",
      "score": 0
    }
  ],
  "next_cursor": "eyJ..."
}
Retorna uma lista paginada de candidaturas para uma vaga específica.

Path Parameters

id
string
required
O ID da vaga.

Query Parameters

limit
number
default:"100"
Número máximo de resultados por página (máximo 100).
cursor
string
Cursor para paginação. Opcional.

Response

data
array
Lista de candidaturas.
next_cursor
string
Cursor para a próxima página de resultados.
curl -X GET "https://tallentu.com/api/v1/jobs/job_123/applications?limit=50" \
  -H "Authorization: Bearer <token>"
{
  "data": [
    {
      "candidate_id": "user_123",
      "name": "John Doe",
      "email": "[email protected]",
      "stage_id": "col_123",
      "stage_title": "Interview",
      "created_at": "2023-10-27T10:00:00.000Z",
      "score": 0
    }
  ],
  "next_cursor": "eyJ..."
}