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

# Get Request

> Get details of a specific time-off request

Retrieve detailed information about a specific time-off request using its ID.

## Request

```bash theme={null}
curl -X GET "https://api.series.hr/time-off/get/req-12345" \
  -H "apikey: YOUR_API_KEY"
```

## Parameters

<ParamField path="requestId" type="string" required>
  The unique ID of the time-off request.
</ParamField>

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "RequestId": "req-12345",
      "WorkspaceId": "a7d5339a-5531-4336-99c6-6f3249c9ac20",
      "RequesterId": "714760171",
      "Start": "2025-10-19T09:00:00.000Z",
      "End": "2025-10-21T17:00:00.000Z",
      "Importance": "medium",
      "Reason": "Going on vacation",
      "Status": "accepted",
      "HandledBy": "123456789",
      "ManagerNote": "Enjoy your trip!",
      "CreatedAt": "2025-10-01T12:00:00.000Z",
      "UpdatedAt": "2025-10-02T15:30:00.000Z"
    }
  }
  ```
</ResponseField>
