> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tallentu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Atualizar Status

Atualiza o status de uma vaga.

## Path Parameters

<ParamField path="id" type="string" required>
  O ID da vaga.
</ParamField>

## Body

<ParamField body="status" type="string" required>
  O novo status da vaga. Opções: `published`, `closed`, `archived`, `draft`,
  `paused`.
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indica se a operação foi bem sucedida.
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl -X PATCH "https://api.tallentu.com/v1/jobs/job_123/status" \
    -H "Authorization: Bearer <token>" \
    -H "Content-Type: application/json" \
    -d '{
      "status": "closed"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>
