> For the complete documentation index, see [llms.txt](https://knowledgebase.flaik.com/flaik-knowledge-base/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knowledgebase.flaik.com/flaik-knowledge-base/for-it-specialists/3.-flaik-connect-api/global-settings/resort-details.md).

# Resort Details

## Overview

Returns the identity and high-level configuration of the authenticated resort (the tenant your access token is bound to). This is typically the first call a new integrator makes to verify that authentication is working and that the token resolves to the expected resort.

There are no inputs — the response always reflects the resort attached to the access token.

## Authentication

Include your access token in the Authorization header:

```http
Authorization: Bearer {access_token}
```

See the [Authentication Guide](https://knowledgebase.flaik.com/flaik-knowledge-base/for-it-specialists/3.-flaik-connect-api/overview/authentication) for details on obtaining access tokens.

## Endpoint

```http
GET {api-url}/api/globalsettings/resort
```

**Path Parameters**

None.

**Query Parameters**

None.

**Example Request**

```http
GET {api-url}/api/globalsettings/resort
Authorization: Bearer {access_token}
```

**Response Format**

```json
{
  "id": 42,
  "name": "Example Mountain Resort",
  "location": "Example, CO",
  "directorName": "Jane Doe",
  "contactName": "John Smith",
  "contactEmail": "ops@example-resort.com",
  "contactPhone": "+1-555-555-5555",
  "defaultLanguage": "en",
  "timezone": "America/Denver",
  "imageLight": "https://cdn.flaik.com/.../light.png",
  "imageDark": "https://cdn.flaik.com/.../dark.png",
  "imageSlate": "https://cdn.flaik.com/.../slate.png"
}
```

**Response Fields**

| Field             | Type    | Description                                                            |
| ----------------- | ------- | ---------------------------------------------------------------------- |
| `id`              | integer | Unique resort identifier                                               |
| `name`            | string  | Resort display name — empty string if not set                          |
| `location`        | string  | Free-text resort location — empty string if not set                    |
| `directorName`    | string  | Ski school director name — empty string if not set                     |
| `contactName`     | string  | Primary contact name — empty string if not set                         |
| `contactEmail`    | string  | Primary contact email — empty string if not set                        |
| `contactPhone`    | string  | Primary contact phone — empty string if not set                        |
| `defaultLanguage` | string  | Default language code (e.g. `"en"`) — empty string if not set          |
| `timezone`        | string  | IANA timezone name (e.g. `"America/Denver"`) — empty string if not set |
| `imageLight`      | string  | URL to the resort logo on a light background — empty string if not set |
| `imageDark`       | string  | URL to the resort logo on a dark background — empty string if not set  |
| `imageSlate`      | string  | URL to the resort logo on a slate background — empty string if not set |

{% hint style="info" %}
All times reported by other flaik Connect endpoints (e.g. shift `startTime`, paid activity timestamps) refer to events at this resort's local timezone unless explicitly labelled UTC. Use the `timezone` value here to interpret them correctly.
{% endhint %}

## Error Responses

| HTTP Status | Description                     |
| ----------- | ------------------------------- |
| `401`       | Missing or invalid access token |

Need help with resort configuration? Contact <resortsupport@flaik.com>.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://knowledgebase.flaik.com/flaik-knowledge-base/for-it-specialists/3.-flaik-connect-api/global-settings/resort-details.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
