# User API

- **Base URL:** `https://user.sls.epilot.io`
- **Full API Docs:** [https://docs.epilot.io/api/user](https://docs.epilot.io/api/user)

## Usage

```ts
import { epilot } from '@epilot/sdk'

epilot.authorize(() => '<token>')
const { data } = await epilot.user.signUpUser(...)
```

### Tree-shakeable import

```ts
import { getClient, authorize } from '@epilot/sdk/user'

const userClient = getClient()
authorize(userClient, () => '<token>')
const { data } = await userClient.signUpUser(...)
```

## Operations

**User V2**
- [`signUpUser`](#signupuser)
- [`getMeV2`](#getmev2)
- [`listUserSettings`](#listusersettings)
- [`getUserSettingsScope`](#getusersettingsscope)
- [`getUserSetting`](#getusersetting)
- [`putUserSetting`](#putusersetting)
- [`deleteUserSetting`](#deleteusersetting)
- [`listUsersV2`](#listusersv2)
- [`getUserV2`](#getuserv2)
- [`updateUserV2`](#updateuserv2)
- [`deleteUserV2`](#deleteuserv2)
- [`inviteUser`](#inviteuser)
- [`resendUserInvitation`](#resenduserinvitation)
- [`sendUserPasswordReset`](#senduserpasswordreset)
- [`getGroupsForUser`](#getgroupsforuser)
- [`verifyEmailWithToken`](#verifyemailwithtoken)
- [`requestPasswordReset`](#requestpasswordreset)
- [`checkInviteToken`](#checkinvitetoken)
- [`activateUser`](#activateuser)
- [`rejectInvite`](#rejectinvite)
- [`getUserLoginParametersV2`](#getuserloginparametersv2)
- [`beginPasskeyAuthentication`](#beginpasskeyauthentication)
- [`beginDiscoverablePasskeyAuthentication`](#begindiscoverablepasskeyauthentication)
- [`resolveDiscoverableCredential`](#resolvediscoverablecredential)
- [`beginPasskeyRegistration`](#beginpasskeyregistration)
- [`completePasskeyRegistration`](#completepasskeyregistration)
- [`listPasskeys`](#listpasskeys)
- [`deletePasskey`](#deletepasskey)
- [`switchOrganization`](#switchorganization)

**Group**
- [`getGroups`](#getgroups)
- [`createGroup`](#creategroup)
- [`getGroup`](#getgroup)
- [`updateGroup`](#updategroup)
- [`deleteGroup`](#deletegroup)
- [`advanceUserAssignment`](#advanceuserassignment)

**Navigation**
- [`createNavigation`](#createnavigation)
- [`getNavigation`](#getnavigation)

**User V1**
- [`getMe`](#getme)
- [`listUsers`](#listusers)
- [`getUser`](#getuser)
- [`getUserLoginParameters`](#getuserloginparameters)

**Schemas**
- [`NavigationId`](#navigationid)
- [`Navigation`](#navigation)
- [`NavigationCreateRequest`](#navigationcreaterequest)
- [`NavigationConfiguration`](#navigationconfiguration)
- [`NavigationItem`](#navigationitem)
- [`NavigationKeyItem`](#navigationkeyitem)
- [`NavigationGroupItem`](#navigationgroupitem)
- [`InviteToken`](#invitetoken)
- [`PartnerInvitationToken`](#partnerinvitationtoken)
- [`VerificationToken`](#verificationtoken)
- [`GroupId`](#groupid)
- [`UserId`](#userid)
- [`Query`](#query)
- [`OrganizationId`](#organizationid)
- [`Limit`](#limit)
- [`Offset`](#offset)
- [`Hydrate`](#hydrate)
- [`Username`](#username)
- [`UserInvitationPayload`](#userinvitationpayload)
- [`UserActivationPayload`](#useractivationpayload)
- [`UserVerificationPayload`](#userverificationpayload)
- [`UserV2`](#userv2)
- [`User`](#user)
- [`LoginParameters`](#loginparameters)
- [`GroupImageUri`](#groupimageuri)
- [`CreateGroupReq`](#creategroupreq)
- [`UpdateGroupReq`](#updategroupreq)
- [`Group`](#group)
- [`SignupUserPayload`](#signupuserpayload)
- [`OrganizationDetail`](#organizationdetail)
- [`CognitoDetails`](#cognitodetails)
- [`UserDetail`](#userdetail)
- [`Organization`](#organization)
- [`DataPointsResponse`](#datapointsresponse)
- [`DataPoint`](#datapoint)
- [`UserSettingScope`](#usersettingscope)
- [`UserSettingKey`](#usersettingkey)
- [`UserSettingValue`](#usersettingvalue)
- [`UserSetting`](#usersetting)
- [`UserSettingsListResponse`](#usersettingslistresponse)
- [`UserSettingsScopeResponse`](#usersettingsscoperesponse)
- [`Passkey`](#passkey)
- [`PasskeyAuthenticationOptions`](#passkeyauthenticationoptions)
- [`PasskeyRegistrationOptions`](#passkeyregistrationoptions)
- [`PasskeyRegistrationResponse`](#passkeyregistrationresponse)

### `signUpUser`

`POST /v2/users/public/signup`

```ts
const { data } = await client.signUpUser(
  {
    token: 'example',
  },
  {
    organization_detail: {
      type: 'Vendor',
      name: 'Epilot',
      pricing_tier: 'professional',
      email: 'string',
      phone: 'string',
      website: 'string',
      is_privacy_policy_checked: false,
      is_terms_and_conditions_checked: false
    },
    user_detail: {
      full_name: 'Example user',
      email: 'user@example.com',
      password: 'AKjhdakjsdh@!34'
    },
    language: 'en'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "user": {
    "id": "string",
    "organization_id": "string",
    "email": "user@example.com",
    "display_name": "Example user",
    "name": "Example user",
    "preferred_language": "de",
    "signature": "<p>Thanks</p>",
    "custom_navigation": "5gbe4nkp6jsfq",
    "roles": ["Owner"],
    "image_uri": {
      "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
      "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
    },
    "properties": [
      {
        "name": "profileImageName",
        "value": "avatar.png"
      }
    ]
  },
  "organization": {
    "id": "string",
    "type": "Vendor",
    "name": "Epilot",
    "signature": "<p>Thanks</p>",
    "symbol": "EPI",
    "pricing_tier": "professional",
    "email": "someone@epilot.cloud",
    "phone": 49123123123,
    "website": "https://epilot.cloud",
    "address": {
      "country": "string",
      "city": "string",
      "postal_code": "string",
      "street": "string",
      "street_number": "string"
    },
    "logo_url": "https://epilot-playground-organization-data.s3.eu-central-1.amazonaws.com/epilot-logo.png",
    "logo_thumbnail_url": "https://epilot-playground-organization-data.s3.eu-central-1.amazonaws.com/epilot-logo.png",
    "is_unlicensed_org": false,
    "cognito_details": {
      "cognito_region": "eu-central-1",
      "cognito_user_pool_id": "eu-central-sample",
      "cognito_user_pool_client_id": "asbkh213ehkquwhdi",
      "cognito_user_pool_arn": "arn:aws:cognito-idp:eu-central-1:123456789012:userpool/eu-central-sample"
    }
  }
}
```

</details>

---

### `getMeV2`

Get currently logged in user

`GET /v2/users/me`

```ts
const { data } = await client.getMeV2()
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "created_at": "1970-01-01T00:00:00.000Z",
  "activated_at": "1970-01-01T00:00:00.000Z",
  "display_name": "Example User",
  "status": "Active",
  "email": "user@example.com",
  "draft_email": "user@example.com",
  "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
  "department": "Sales",
  "phone": 1234567890,
  "secondary_phone": 1234567890,
  "mfa_enabled": false,
  "has_passkeys": false,
  "phone_verified": true,
  "token": "string",
  "signature": "<p>Thanks</p>",
  "is_signature_enabled": true,
  "preferred_language": "de",
  "custom_start_page": "/app/dashboard",
  "custom_navigation": "5gbe4nkp6jsfq",
  "override_release_channel": "canary",
  "feature_preferences": {
    "feature_name": true
  },
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "favorites": {
    "entity_views": {
      "opportunity": "891a5409850abf8b92bd2cb7bdd2844d32ce6bec",
      "order": "628aee91-7c2f-4047-ab0d-433582a19c49"
    },
    "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
  },
  "email_notification_setting": {
    "added_participant_opportunity": true,
    "assigned_opportunity": true,
    "assigned_task": true,
    "comment_opportunity": true,
    "deleted_task": true,
    "escalated_task": true,
    "message_receive_opportunity": true,
    "message_send_opportunity": true,
    "created_task": true,
    "created_opportunity_manual": true,
    "created_opportunity_auto": true,
    "deleted_opportunity": true
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `listUserSettings`

List all setting scopes and keys available for the currently logged in user. Does not return setting values.

`GET /v2/users/me/settings`

```ts
const { data } = await client.listUserSettings()
```

<details>
<summary>Response</summary>

```json
{
  "results": [
    {
      "scope": "calendar",
      "keys": ["visible_calendars"]
    }
  ]
}
```

</details>

---

### `getUserSettingsScope`

Get all setting values for one scope for the currently logged in user.

`GET /v2/users/me/settings/{scope}`

```ts
const { data } = await client.getUserSettingsScope({
  scope: 'example',
})
```

<details>
<summary>Response</summary>

```json
{
  "scope": "calendar",
  "settings": {
    "visible_calendars": {
      "calendar_ids": ["holidays"]
    }
  }
}
```

</details>

---

### `getUserSetting`

Get one setting value by scope and key for the currently logged in user.

`GET /v2/users/me/settings/{scope}/{key}`

```ts
const { data } = await client.getUserSetting({
  scope: 'example',
  key: 'example',
})
```

<details>
<summary>Response</summary>

```json
{
  "scope": "calendar",
  "key": "visible_calendars",
  "value": {},
  "created_at": "1970-01-01T00:00:00.000Z",
  "updated_at": "1970-01-01T00:00:00.000Z"
}
```

</details>

---

### `putUserSetting`

Create or replace one setting value for the currently logged in user.

`PUT /v2/users/me/settings/{scope}/{key}`

```ts
const { data } = await client.putUserSetting(
  {
    scope: 'example',
    key: 'example',
  },
  {},
)
```

<details>
<summary>Response</summary>

```json
{
  "scope": "calendar",
  "key": "visible_calendars",
  "value": {},
  "created_at": "1970-01-01T00:00:00.000Z",
  "updated_at": "1970-01-01T00:00:00.000Z"
}
```

</details>

---

### `deleteUserSetting`

Delete one setting value for the currently logged in user.

`DELETE /v2/users/me/settings/{scope}/{key}`

```ts
const { data } = await client.deleteUserSetting({
  scope: 'example',
  key: 'example',
})
```

---

### `listUsersV2`

Get the list of organization users

`GET /v2/users`

```ts
const { data } = await client.listUsersV2({
  query: 'example',
  limit: 1,
  offset: 1,
})
```

<details>
<summary>Response</summary>

```json
{
  "results": [
    {
      "id": "string",
      "organization_id": "string",
      "created_at": "1970-01-01T00:00:00.000Z",
      "activated_at": "1970-01-01T00:00:00.000Z",
      "display_name": "Example User",
      "status": "Active",
      "email": "user@example.com",
      "draft_email": "user@example.com",
      "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
      "department": "Sales",
      "phone": 1234567890,
      "secondary_phone": 1234567890,
      "mfa_enabled": false,
      "has_passkeys": false,
      "phone_verified": true,
      "token": "string",
      "signature": "<p>Thanks</p>",
      "is_signature_enabled": true,
      "preferred_language": "de",
      "custom_start_page": "/app/dashboard",
      "custom_navigation": "5gbe4nkp6jsfq",
      "override_release_channel": "canary",
      "feature_preferences": {
        "feature_name": true
      },
      "image_uri": {
        "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
        "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
      },
      "favorites": {
        "entity_views": {
          "opportunity": "891a5409850abf8b92bd2cb7bdd2844d32ce6bec",
          "order": "628aee91-7c2f-4047-ab0d-433582a19c49"
        },
        "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
      },
      "email_notification_setting": {
        "added_participant_opportunity": true,
        "assigned_opportunity": true,
        "assigned_task": true,
        "comment_opportunity": true,
        "deleted_task": true,
        "escalated_task": true,
        "message_receive_opportunity": true,
        "message_send_opportunity": true,
        "created_task": true,
        "created_opportunity_manual": true,
        "created_opportunity_auto": true,
        "deleted_opportunity": true
      },
      "properties": [
        {
          "name": "profileImageName",
          "value": "avatar.png"
        }
      ]
    }
  ]
}
```

</details>

---

### `getUserV2`

Get user details by user id

`GET /v2/users/{id}`

```ts
const { data } = await client.getUserV2({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "created_at": "1970-01-01T00:00:00.000Z",
  "activated_at": "1970-01-01T00:00:00.000Z",
  "display_name": "Example User",
  "status": "Active",
  "email": "user@example.com",
  "draft_email": "user@example.com",
  "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
  "department": "Sales",
  "phone": 1234567890,
  "secondary_phone": 1234567890,
  "mfa_enabled": false,
  "has_passkeys": false,
  "phone_verified": true,
  "token": "string",
  "signature": "<p>Thanks</p>",
  "is_signature_enabled": true,
  "preferred_language": "de",
  "custom_start_page": "/app/dashboard",
  "custom_navigation": "5gbe4nkp6jsfq",
  "override_release_channel": "canary",
  "feature_preferences": {
    "feature_name": true
  },
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "favorites": {
    "entity_views": {
      "opportunity": "891a5409850abf8b92bd2cb7bdd2844d32ce6bec",
      "order": "628aee91-7c2f-4047-ab0d-433582a19c49"
    },
    "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
  },
  "email_notification_setting": {
    "added_participant_opportunity": true,
    "assigned_opportunity": true,
    "assigned_task": true,
    "comment_opportunity": true,
    "deleted_task": true,
    "escalated_task": true,
    "message_receive_opportunity": true,
    "message_send_opportunity": true,
    "created_task": true,
    "created_opportunity_manual": true,
    "created_opportunity_auto": true,
    "deleted_opportunity": true
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `updateUserV2`

Update user details

`PATCH /v2/users/{id}`

```ts
const { data } = await client.updateUserV2(
  {
    id: '123e4567-e89b-12d3-a456-426614174000',
  },
  {
    id: 'string',
    organization_id: 'string',
    created_at: '1970-01-01T00:00:00.000Z',
    activated_at: '1970-01-01T00:00:00.000Z',
    display_name: 'Example User',
    status: 'Active',
    email: 'user@example.com',
    draft_email: 'user@example.com',
    draft_email_expires_at: '1970-01-01T00:00:00.000Z',
    department: 'Sales',
    phone: 1234567890,
    secondary_phone: 1234567890,
    mfa_enabled: false,
    has_passkeys: false,
    phone_verified: true,
    token: 'string',
    signature: '<p>Thanks</p>',
    is_signature_enabled: true,
    preferred_language: 'de',
    custom_start_page: '/app/dashboard',
    custom_navigation: '5gbe4nkp6jsfq',
    override_release_channel: 'canary',
    feature_preferences: {
      feature_name: true
    },
    image_uri: {
      original: 'https://account-profile-images.epilot.cloud/1/avatar.png',
      thumbnail_32: 'https://account-profile-images.epilot.cloud/1/avatar_32x32.png'
    },
    favorites: {
      entity_views: {
        opportunity: '891a5409850abf8b92bd2cb7bdd2844d32ce6bec',
        order: '628aee91-7c2f-4047-ab0d-433582a19c49'
      },
      dashboard: '751ff121-9ac2-4511-a2e6-851f11287380'
    },
    email_notification_setting: {
      added_participant_opportunity: true,
      assigned_opportunity: true,
      assigned_task: true,
      comment_opportunity: true,
      deleted_task: true,
      escalated_task: true,
      message_receive_opportunity: true,
      message_send_opportunity: true,
      created_task: true,
      created_opportunity_manual: true,
      created_opportunity_auto: true,
      deleted_opportunity: true
    },
    properties: [
      {
        name: 'profileImageName',
        value: 'avatar.png'
      }
    ]
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "created_at": "1970-01-01T00:00:00.000Z",
  "activated_at": "1970-01-01T00:00:00.000Z",
  "display_name": "Example User",
  "status": "Active",
  "email": "user@example.com",
  "draft_email": "user@example.com",
  "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
  "department": "Sales",
  "phone": 1234567890,
  "secondary_phone": 1234567890,
  "mfa_enabled": false,
  "has_passkeys": false,
  "phone_verified": true,
  "token": "string",
  "signature": "<p>Thanks</p>",
  "is_signature_enabled": true,
  "preferred_language": "de",
  "custom_start_page": "/app/dashboard",
  "custom_navigation": "5gbe4nkp6jsfq",
  "override_release_channel": "canary",
  "feature_preferences": {
    "feature_name": true
  },
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "favorites": {
    "entity_views": {
      "opportunity": "891a5409850abf8b92bd2cb7bdd2844d32ce6bec",
      "order": "628aee91-7c2f-4047-ab0d-433582a19c49"
    },
    "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
  },
  "email_notification_setting": {
    "added_participant_opportunity": true,
    "assigned_opportunity": true,
    "assigned_task": true,
    "comment_opportunity": true,
    "deleted_task": true,
    "escalated_task": true,
    "message_receive_opportunity": true,
    "message_send_opportunity": true,
    "created_task": true,
    "created_opportunity_manual": true,
    "created_opportunity_auto": true,
    "deleted_opportunity": true
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `deleteUserV2`

Delete user by user id

`DELETE /v2/users/{id}`

```ts
const { data } = await client.deleteUserV2({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "email": "user@example.com",
  "display_name": "Example user",
  "name": "Example user",
  "preferred_language": "de",
  "signature": "<p>Thanks</p>",
  "custom_navigation": "5gbe4nkp6jsfq",
  "roles": ["Owner"],
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `inviteUser`

Creates a new user in the caller's organization and sends an invite email to activate the user

`POST /v2/users/invite`

```ts
const { data } = await client.inviteUser(
  null,
  {
    email: 'test@example.com',
    language: 'en',
    roles: ['123:owner']
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "created_at": "1970-01-01T00:00:00.000Z",
  "activated_at": "1970-01-01T00:00:00.000Z",
  "display_name": "Example User",
  "status": "Active",
  "email": "user@example.com",
  "draft_email": "user@example.com",
  "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
  "department": "Sales",
  "phone": 1234567890,
  "secondary_phone": 1234567890,
  "mfa_enabled": false,
  "has_passkeys": false,
  "phone_verified": true,
  "token": "string",
  "signature": "<p>Thanks</p>",
  "is_signature_enabled": true,
  "preferred_language": "de",
  "custom_start_page": "/app/dashboard",
  "custom_navigation": "5gbe4nkp6jsfq",
  "override_release_channel": "canary",
  "feature_preferences": {
    "feature_name": true
  },
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "favorites": {
    "entity_views": {
      "opportunity": "891a5409850abf8b92bd2cb7bdd2844d32ce6bec",
      "order": "628aee91-7c2f-4047-ab0d-433582a19c49"
    },
    "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
  },
  "email_notification_setting": {
    "added_participant_opportunity": true,
    "assigned_opportunity": true,
    "assigned_task": true,
    "comment_opportunity": true,
    "deleted_task": true,
    "escalated_task": true,
    "message_receive_opportunity": true,
    "message_send_opportunity": true,
    "created_task": true,
    "created_opportunity_manual": true,
    "created_opportunity_auto": true,
    "deleted_opportunity": true
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `resendUserInvitation`

Resend user invitation email

`POST /v2/users/invite:resendEmail`

```ts
const { data } = await client.resendUserInvitation(
  null,
  {
    email: 'test@example.com',
    language: 'en'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "created_at": "1970-01-01T00:00:00.000Z",
  "activated_at": "1970-01-01T00:00:00.000Z",
  "display_name": "Example User",
  "status": "Active",
  "email": "user@example.com",
  "draft_email": "user@example.com",
  "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
  "department": "Sales",
  "phone": 1234567890,
  "secondary_phone": 1234567890,
  "mfa_enabled": false,
  "has_passkeys": false,
  "phone_verified": true,
  "token": "string",
  "signature": "<p>Thanks</p>",
  "is_signature_enabled": true,
  "preferred_language": "de",
  "custom_start_page": "/app/dashboard",
  "custom_navigation": "5gbe4nkp6jsfq",
  "override_release_channel": "canary",
  "feature_preferences": {
    "feature_name": true
  },
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "favorites": {
    "entity_views": {
      "opportunity": "891a5409850abf8b92bd2cb7bdd2844d32ce6bec",
      "order": "628aee91-7c2f-4047-ab0d-433582a19c49"
    },
    "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
  },
  "email_notification_setting": {
    "added_participant_opportunity": true,
    "assigned_opportunity": true,
    "assigned_task": true,
    "comment_opportunity": true,
    "deleted_task": true,
    "escalated_task": true,
    "message_receive_opportunity": true,
    "message_send_opportunity": true,
    "created_task": true,
    "created_opportunity_manual": true,
    "created_opportunity_auto": true,
    "deleted_opportunity": true
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `sendUserPasswordReset`

Send a password reset email to a user in your organization.
Requires `user:edit` on the target user.

`POST /v2/users:sendPasswordReset`

```ts
const { data } = await client.sendUserPasswordReset(
  null,
  {
    email: 'test@example.com'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "success": true
}
```

</details>

---

### `getGroupsForUser`

Get groups of a user

`GET /v2/users/{id}/groups`

```ts
const { data } = await client.getGroupsForUser({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

<details>
<summary>Response</summary>

```json
[
  {
    "id": "string",
    "org_id": "string",
    "name": "Finance",
    "created_at": "2024-02-08T04:44:32.246Z",
    "updated_at": "2024-02-08T04:44:32.246Z",
    "created_by": "123",
    "crt_assignee": {
      "id": "string",
      "organization_id": "string",
      "created_at": "1970-01-01T00:00:00.000Z",
      "activated_at": "1970-01-01T00:00:00.000Z",
      "display_name": "Example User",
      "status": "Active",
      "email": "user@example.com",
      "draft_email": "user@example.com",
      "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
      "department": "Sales",
      "phone": 1234567890,
      "secondary_phone": 1234567890,
      "mfa_enabled": false,
      "has_passkeys": false,
      "phone_verified": true,
      "token": "string",
      "signature": "<p>Thanks</p>",
      "is_signature_enabled": true,
      "preferred_language": "de",
      "custom_start_page": "/app/dashboard",
      "custom_navigation": "5gbe4nkp6jsfq",
      "override_release_channel": "canary",
      "feature_preferences": {},
      "image_uri": {},
      "favorites": {},
      "email_notification_setting": {},
      "properties": [],
      "crt_index": 3
    },
    "users": [
      {}
    ],
    "image_uri": {
      "gradient_colors": ["#0588f0", "#3358d4"]
    },
    "abbreviation": "FN"
  }
]
```

</details>

---

### `getGroups`

Lists groups in organizations you have access to

`GET /v1/groups`

```ts
const { data } = await client.getGroups({
  query: 'example',
  limit: 1,
  offset: 1,
  hydrate: true,
})
```

<details>
<summary>Response</summary>

```json
{
  "hits": 1,
  "groups": [
    {
      "id": "string",
      "org_id": "string",
      "name": "Finance",
      "created_at": "2024-02-08T04:44:32.246Z",
      "updated_at": "2024-02-08T04:44:32.246Z",
      "created_by": "123",
      "crt_assignee": {},
      "users": [],
      "image_uri": {},
      "abbreviation": "FN"
    }
  ]
}
```

</details>

---

### `createGroup`

Create a new group

`POST /v1/groups`

```ts
const { data } = await client.createGroup(
  null,
  {
    name: 'Finance',
    user_ids: ['123', '456'],
    image_uri: {
      gradient_colors: ['#0588f0', '#3358d4']
    },
    abbreviation: 'FN'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "org_id": "string",
  "name": "Finance",
  "created_at": "2024-02-08T04:44:32.246Z",
  "updated_at": "2024-02-08T04:44:32.246Z",
  "created_by": "123",
  "crt_assignee": {
    "id": "string",
    "organization_id": "string",
    "created_at": "1970-01-01T00:00:00.000Z",
    "activated_at": "1970-01-01T00:00:00.000Z",
    "display_name": "Example User",
    "status": "Active",
    "email": "user@example.com",
    "draft_email": "user@example.com",
    "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
    "department": "Sales",
    "phone": 1234567890,
    "secondary_phone": 1234567890,
    "mfa_enabled": false,
    "has_passkeys": false,
    "phone_verified": true,
    "token": "string",
    "signature": "<p>Thanks</p>",
    "is_signature_enabled": true,
    "preferred_language": "de",
    "custom_start_page": "/app/dashboard",
    "custom_navigation": "5gbe4nkp6jsfq",
    "override_release_channel": "canary",
    "feature_preferences": {
      "feature_name": true
    },
    "image_uri": {
      "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
      "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
    },
    "favorites": {
      "entity_views": {},
      "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
    },
    "email_notification_setting": {
      "added_participant_opportunity": true,
      "assigned_opportunity": true,
      "assigned_task": true,
      "comment_opportunity": true,
      "deleted_task": true,
      "escalated_task": true,
      "message_receive_opportunity": true,
      "message_send_opportunity": true,
      "created_task": true,
      "created_opportunity_manual": true,
      "created_opportunity_auto": true,
      "deleted_opportunity": true
    },
    "properties": [
      {}
    ],
    "crt_index": 3
  },
  "users": [
    {
      "id": "string",
      "organization_id": "string",
      "created_at": "1970-01-01T00:00:00.000Z",
      "activated_at": "1970-01-01T00:00:00.000Z",
      "display_name": "Example User",
      "status": "Active",
      "email": "user@example.com",
      "draft_email": "user@example.com",
      "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
      "department": "Sales",
      "phone": 1234567890,
      "secondary_phone": 1234567890,
      "mfa_enabled": false,
      "has_passkeys": false,
      "phone_verified": true,
      "token": "string",
      "signature": "<p>Thanks</p>",
      "is_signature_enabled": true,
      "preferred_language": "de",
      "custom_start_page": "/app/dashboard",
      "custom_navigation": "5gbe4nkp6jsfq",
      "override_release_channel": "canary",
      "feature_preferences": {},
      "image_uri": {},
      "favorites": {},
      "email_notification_setting": {},
      "properties": []
    }
  ],
  "image_uri": {
    "gradient_colors": ["#0588f0", "#3358d4"]
  },
  "abbreviation": "FN"
}
```

</details>

---

### `getGroup`

Get group by id

`GET /v1/groups/{id}`

```ts
const { data } = await client.getGroup({
  id: '123e4567-e89b-12d3-a456-426614174000',
  hydrate: true,
})
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "org_id": "string",
  "name": "Finance",
  "created_at": "2024-02-08T04:44:32.246Z",
  "updated_at": "2024-02-08T04:44:32.246Z",
  "created_by": "123",
  "crt_assignee": {
    "id": "string",
    "organization_id": "string",
    "created_at": "1970-01-01T00:00:00.000Z",
    "activated_at": "1970-01-01T00:00:00.000Z",
    "display_name": "Example User",
    "status": "Active",
    "email": "user@example.com",
    "draft_email": "user@example.com",
    "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
    "department": "Sales",
    "phone": 1234567890,
    "secondary_phone": 1234567890,
    "mfa_enabled": false,
    "has_passkeys": false,
    "phone_verified": true,
    "token": "string",
    "signature": "<p>Thanks</p>",
    "is_signature_enabled": true,
    "preferred_language": "de",
    "custom_start_page": "/app/dashboard",
    "custom_navigation": "5gbe4nkp6jsfq",
    "override_release_channel": "canary",
    "feature_preferences": {
      "feature_name": true
    },
    "image_uri": {
      "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
      "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
    },
    "favorites": {
      "entity_views": {},
      "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
    },
    "email_notification_setting": {
      "added_participant_opportunity": true,
      "assigned_opportunity": true,
      "assigned_task": true,
      "comment_opportunity": true,
      "deleted_task": true,
      "escalated_task": true,
      "message_receive_opportunity": true,
      "message_send_opportunity": true,
      "created_task": true,
      "created_opportunity_manual": true,
      "created_opportunity_auto": true,
      "deleted_opportunity": true
    },
    "properties": [
      {}
    ],
    "crt_index": 3
  },
  "users": [
    {
      "id": "string",
      "organization_id": "string",
      "created_at": "1970-01-01T00:00:00.000Z",
      "activated_at": "1970-01-01T00:00:00.000Z",
      "display_name": "Example User",
      "status": "Active",
      "email": "user@example.com",
      "draft_email": "user@example.com",
      "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
      "department": "Sales",
      "phone": 1234567890,
      "secondary_phone": 1234567890,
      "mfa_enabled": false,
      "has_passkeys": false,
      "phone_verified": true,
      "token": "string",
      "signature": "<p>Thanks</p>",
      "is_signature_enabled": true,
      "preferred_language": "de",
      "custom_start_page": "/app/dashboard",
      "custom_navigation": "5gbe4nkp6jsfq",
      "override_release_channel": "canary",
      "feature_preferences": {},
      "image_uri": {},
      "favorites": {},
      "email_notification_setting": {},
      "properties": []
    }
  ],
  "image_uri": {
    "gradient_colors": ["#0588f0", "#3358d4"]
  },
  "abbreviation": "FN"
}
```

</details>

---

### `updateGroup`

Update group by id

`PATCH /v1/groups/{id}`

```ts
const { data } = await client.updateGroup(
  {
    id: '123e4567-e89b-12d3-a456-426614174000',
  },
  {
    name: 'Finance',
    user_ids: ['123', '456'],
    image_uri: {
      gradient_colors: ['#0588f0', '#3358d4']
    },
    abbreviation: 'FN'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "org_id": "string",
  "name": "Finance",
  "created_at": "2024-02-08T04:44:32.246Z",
  "updated_at": "2024-02-08T04:44:32.246Z",
  "created_by": "123",
  "crt_assignee": {
    "id": "string",
    "organization_id": "string",
    "created_at": "1970-01-01T00:00:00.000Z",
    "activated_at": "1970-01-01T00:00:00.000Z",
    "display_name": "Example User",
    "status": "Active",
    "email": "user@example.com",
    "draft_email": "user@example.com",
    "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
    "department": "Sales",
    "phone": 1234567890,
    "secondary_phone": 1234567890,
    "mfa_enabled": false,
    "has_passkeys": false,
    "phone_verified": true,
    "token": "string",
    "signature": "<p>Thanks</p>",
    "is_signature_enabled": true,
    "preferred_language": "de",
    "custom_start_page": "/app/dashboard",
    "custom_navigation": "5gbe4nkp6jsfq",
    "override_release_channel": "canary",
    "feature_preferences": {
      "feature_name": true
    },
    "image_uri": {
      "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
      "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
    },
    "favorites": {
      "entity_views": {},
      "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
    },
    "email_notification_setting": {
      "added_participant_opportunity": true,
      "assigned_opportunity": true,
      "assigned_task": true,
      "comment_opportunity": true,
      "deleted_task": true,
      "escalated_task": true,
      "message_receive_opportunity": true,
      "message_send_opportunity": true,
      "created_task": true,
      "created_opportunity_manual": true,
      "created_opportunity_auto": true,
      "deleted_opportunity": true
    },
    "properties": [
      {}
    ],
    "crt_index": 3
  },
  "users": [
    {
      "id": "string",
      "organization_id": "string",
      "created_at": "1970-01-01T00:00:00.000Z",
      "activated_at": "1970-01-01T00:00:00.000Z",
      "display_name": "Example User",
      "status": "Active",
      "email": "user@example.com",
      "draft_email": "user@example.com",
      "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
      "department": "Sales",
      "phone": 1234567890,
      "secondary_phone": 1234567890,
      "mfa_enabled": false,
      "has_passkeys": false,
      "phone_verified": true,
      "token": "string",
      "signature": "<p>Thanks</p>",
      "is_signature_enabled": true,
      "preferred_language": "de",
      "custom_start_page": "/app/dashboard",
      "custom_navigation": "5gbe4nkp6jsfq",
      "override_release_channel": "canary",
      "feature_preferences": {},
      "image_uri": {},
      "favorites": {},
      "email_notification_setting": {},
      "properties": []
    }
  ],
  "image_uri": {
    "gradient_colors": ["#0588f0", "#3358d4"]
  },
  "abbreviation": "FN"
}
```

</details>

---

### `deleteGroup`

Delete group by id

`DELETE /v1/groups/{id}`

```ts
const { data } = await client.deleteGroup({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

---

### `advanceUserAssignment`

Advance user assignment to next user in line

`POST /v1/groups/{id}/user:next`

```ts
const { data } = await client.advanceUserAssignment({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "org_id": "string",
  "name": "Finance",
  "created_at": "2024-02-08T04:44:32.246Z",
  "updated_at": "2024-02-08T04:44:32.246Z",
  "created_by": "123",
  "crt_assignee": {
    "id": "string",
    "organization_id": "string",
    "created_at": "1970-01-01T00:00:00.000Z",
    "activated_at": "1970-01-01T00:00:00.000Z",
    "display_name": "Example User",
    "status": "Active",
    "email": "user@example.com",
    "draft_email": "user@example.com",
    "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
    "department": "Sales",
    "phone": 1234567890,
    "secondary_phone": 1234567890,
    "mfa_enabled": false,
    "has_passkeys": false,
    "phone_verified": true,
    "token": "string",
    "signature": "<p>Thanks</p>",
    "is_signature_enabled": true,
    "preferred_language": "de",
    "custom_start_page": "/app/dashboard",
    "custom_navigation": "5gbe4nkp6jsfq",
    "override_release_channel": "canary",
    "feature_preferences": {
      "feature_name": true
    },
    "image_uri": {
      "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
      "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
    },
    "favorites": {
      "entity_views": {},
      "dashboard": "751ff121-9ac2-4511-a2e6-851f11287380"
    },
    "email_notification_setting": {
      "added_participant_opportunity": true,
      "assigned_opportunity": true,
      "assigned_task": true,
      "comment_opportunity": true,
      "deleted_task": true,
      "escalated_task": true,
      "message_receive_opportunity": true,
      "message_send_opportunity": true,
      "created_task": true,
      "created_opportunity_manual": true,
      "created_opportunity_auto": true,
      "deleted_opportunity": true
    },
    "properties": [
      {}
    ],
    "crt_index": 3
  },
  "users": [
    {
      "id": "string",
      "organization_id": "string",
      "created_at": "1970-01-01T00:00:00.000Z",
      "activated_at": "1970-01-01T00:00:00.000Z",
      "display_name": "Example User",
      "status": "Active",
      "email": "user@example.com",
      "draft_email": "user@example.com",
      "draft_email_expires_at": "1970-01-01T00:00:00.000Z",
      "department": "Sales",
      "phone": 1234567890,
      "secondary_phone": 1234567890,
      "mfa_enabled": false,
      "has_passkeys": false,
      "phone_verified": true,
      "token": "string",
      "signature": "<p>Thanks</p>",
      "is_signature_enabled": true,
      "preferred_language": "de",
      "custom_start_page": "/app/dashboard",
      "custom_navigation": "5gbe4nkp6jsfq",
      "override_release_channel": "canary",
      "feature_preferences": {},
      "image_uri": {},
      "favorites": {},
      "email_notification_setting": {},
      "properties": []
    }
  ],
  "image_uri": {
    "gradient_colors": ["#0588f0", "#3358d4"]
  },
  "abbreviation": "FN"
}
```

</details>

---

### `createNavigation`

Create a new navigation configuration. Navigations are immutable and globally accessible across organizations.
Each creation generates a new id. To update a navigation, create a new one.

`POST /v2/user/navigations`

```ts
const { data } = await client.createNavigation(
  null,
  {
    name: 'Sales Team Navigation',
    configuration: {
      customer_relations: [
        {
          key: 'dashboard'
        },
        {
          key: 'contact'
        }
      ],
      configurations: [
        {
          name: 'Product Catalog',
          subItems: [
            {
              key: 'product'
            },
            {
              key: 'price'
            }
          ]
        },
        {
          key: 'journey'
        }
      ]
    }
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "id": "5gbe4nkp6jsfq",
  "name": "Sales Team Navigation",
  "configuration": {
    "customer_relations": [
      {
        "key": "dashboard"
      },
      {
        "key": "contact"
      }
    ],
    "configurations": [
      {
        "name": "Product Catalog",
        "subItems": [
          {
            "key": "product"
          },
          {
            "key": "price"
          }
        ]
      },
      {
        "key": "journey"
      }
    ]
  }
}
```

</details>

---

### `getNavigation`

Get a navigation configuration by ID

`GET /v2/user/navigations/{id}`

```ts
const { data } = await client.getNavigation({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

<details>
<summary>Response</summary>

```json
{
  "id": "5gbe4nkp6jsfq",
  "name": "Sales Team Navigation",
  "configuration": {
    "customer_relations": [
      {
        "key": "dashboard"
      },
      {
        "key": "contact"
      }
    ],
    "configurations": [
      {
        "name": "Product Catalog",
        "subItems": [
          {
            "key": "product"
          },
          {
            "key": "price"
          }
        ]
      },
      {
        "key": "journey"
      }
    ]
  }
}
```

</details>

---

### `verifyEmailWithToken`

Update new email using an verification token

`POST /v2/users/public/verifyEmail`

```ts
const { data } = await client.verifyEmailWithToken(
  {
    token: 'example',
  },
  {
    password: 'AKjhdakjsdh@!34'
  },
)
```

---

### `requestPasswordReset`

Request a password reset email for the given email address. Always
returns a success response whether or not an account exists with that
email.

`POST /v2/users/public/requestPasswordReset`

```ts
const { data } = await client.requestPasswordReset(
  null,
  {
    email: 'test@example.com'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "message": "If an account exists, a password reset email has been sent."
}
```

</details>

---

### `checkInviteToken`

Check an invite token

`GET /v2/users/public/checkToken`

```ts
const { data } = await client.checkInviteToken({
  token: 'example',
})
```

<details>
<summary>Response</summary>

```json
{
  "invitation_org_id": "string",
  "invitation_org_name": "string",
  "invitation_org_logo_url": "string",
  "invitation_org_logo_thumbnail_url": "string",
  "invitee_user_id": "string",
  "invitee_primary_org_id": "string"
}
```

</details>

---

### `activateUser`

Activate user using an invite token

`POST /v2/users/public/activate`

```ts
const { data } = await client.activateUser(
  {
    token: 'example',
  },
  {
    display_name: 'Example User',
    password: 'AKjhdakjsdh@!34'
  },
)
```

---

### `rejectInvite`

Reject an invite

`DELETE /v2/users/public/reject`

```ts
const { data } = await client.rejectInvite({
  token: 'example',
})
```

<details>
<summary>Response</summary>

```json
{
  "success": true
}
```

</details>

---

### `getUserLoginParametersV2`

Get user organization login parameters by username

`GET /v2/users/public/username/{username}:getLoginParameters`

```ts
const { data } = await client.getUserLoginParametersV2({
  username: 'example',
})
```

<details>
<summary>Response</summary>

```json
{
  "login_parameters": [
    {
      "organization_id": "123",
      "organization_name": "epilot GmbH",
      "organization_type": "Vendor",
      "organization_use": "Production",
      "cognito_region": "eu-central-1",
      "cognito_user_pool_id": "eu-central-sample",
      "cognito_user_pool_client_id": "asbkh213ehkquwhdi",
      "cognito_oauth_domain": "epilot-org-123",
      "cognito_oauth_scopes": ["openid"],
      "oauth_response_type": "code",
      "passkey_enabled": true
    }
  ]
}
```

</details>

---

### `beginPasskeyAuthentication`

Begin passkey authentication flow. Returns WebAuthn options and a signed challenge token.

`POST /v2/users/public/passkeys:authenticateBegin`

```ts
const { data } = await client.beginPasskeyAuthentication(
  null,
  {
    email: 'user@example.com'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "options": {},
  "challenge_token": "string"
}
```

</details>

---

### `beginDiscoverablePasskeyAuthentication`

Begin discoverable passkey authentication flow (no email required). Returns WebAuthn options with empty allowCredentials for the browser credential picker.

`POST /v2/users/public/passkeys:authenticateBeginDiscoverable`

```ts
const { data } = await client.beginDiscoverablePasskeyAuthentication()
```

<details>
<summary>Response</summary>

```json
{
  "options": {},
  "challenge_token": "string"
}
```

</details>

---

### `resolveDiscoverableCredential`

Resolve user identity from a discoverable passkey assertion. Returns the user's email and login parameters.

`POST /v2/users/public/passkeys:resolveCredential`

```ts
const { data } = await client.resolveDiscoverableCredential(
  null,
  {
    challenge_token: 'string',
    assertion_response: {}
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "email": "user@example.com",
  "organization_id": "string",
  "user_id": "string",
  "login_parameters": [
    {
      "organization_id": "123",
      "organization_name": "epilot GmbH",
      "organization_type": "Vendor",
      "organization_use": "Production",
      "cognito_region": "eu-central-1",
      "cognito_user_pool_id": "eu-central-sample",
      "cognito_user_pool_client_id": "asbkh213ehkquwhdi",
      "cognito_oauth_domain": "epilot-org-123",
      "cognito_oauth_scopes": ["openid"],
      "oauth_response_type": "code",
      "passkey_enabled": true
    }
  ]
}
```

</details>

---

### `beginPasskeyRegistration`

Begin passkey registration flow for the authenticated user.

`POST /v2/users/me/passkeys:registerBegin`

```ts
const { data } = await client.beginPasskeyRegistration(
  null,
  {
    friendly_name: 'My Laptop'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "options": {},
  "challenge_token": "string"
}
```

</details>

---

### `completePasskeyRegistration`

Complete passkey registration by verifying the attestation response.

`POST /v2/users/me/passkeys:registerComplete`

```ts
const { data } = await client.completePasskeyRegistration(
  null,
  {
    challenge_token: 'string',
    registration_response: {},
    friendly_name: 'My Laptop'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "credential_id": "string",
  "friendly_name": "My Laptop",
  "created_at": "1970-01-01T00:00:00.000Z",
  "transports": ["string"],
  "aaguid": "string"
}
```

</details>

---

### `listPasskeys`

List all passkeys registered for the authenticated user.

`GET /v2/users/me/passkeys`

```ts
const { data } = await client.listPasskeys()
```

<details>
<summary>Response</summary>

```json
{
  "passkeys": [
    {
      "credential_id": "string",
      "friendly_name": "My Laptop",
      "created_at": "1970-01-01T00:00:00.000Z",
      "transports": ["string"],
      "aaguid": "string"
    }
  ]
}
```

</details>

---

### `deletePasskey`

Delete a passkey by credential ID.

`DELETE /v2/users/me/passkeys/{credentialId}`

```ts
const { data } = await client.deletePasskey({
  credentialId: 'example',
})
```

---

### `switchOrganization`

Switch to another organization the user is part of

`POST /v2/users/switchOrganization`

```ts
const { data } = await client.switchOrganization(
  null,
  {
    org_id: 'string'
  },
)
```

<details>
<summary>Response</summary>

```json
{
  "login_token": "string"
}
```

</details>

---

### `getMe`

Get currently logged in user

`GET /v1/users/me`

```ts
const { data } = await client.getMe()
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "email": "user@example.com",
  "display_name": "Example user",
  "name": "Example user",
  "preferred_language": "de",
  "signature": "<p>Thanks</p>",
  "custom_navigation": "5gbe4nkp6jsfq",
  "roles": ["Owner"],
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `listUsers`

Lists users in organizations you have access to

`GET /v1/users`

```ts
const { data } = await client.listUsers({
  org_ids: ['...'],
  query: 'example',
  limit: 1,
  offset: 1,
})
```

<details>
<summary>Response</summary>

```json
{
  "users": [
    {
      "id": "string",
      "organization_id": "string",
      "email": "user@example.com",
      "display_name": "Example user",
      "name": "Example user",
      "preferred_language": "de",
      "signature": "<p>Thanks</p>",
      "custom_navigation": "5gbe4nkp6jsfq",
      "roles": ["Owner"],
      "image_uri": {
        "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
        "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
      },
      "properties": [
        {
          "name": "profileImageName",
          "value": "avatar.png"
        }
      ]
    }
  ]
}
```

</details>

---

### `getUser`

Get user by id

`GET /v1/users/{id}`

```ts
const { data } = await client.getUser({
  id: '123e4567-e89b-12d3-a456-426614174000',
})
```

<details>
<summary>Response</summary>

```json
{
  "id": "string",
  "organization_id": "string",
  "email": "user@example.com",
  "display_name": "Example user",
  "name": "Example user",
  "preferred_language": "de",
  "signature": "<p>Thanks</p>",
  "custom_navigation": "5gbe4nkp6jsfq",
  "roles": ["Owner"],
  "image_uri": {
    "original": "https://account-profile-images.epilot.cloud/1/avatar.png",
    "thumbnail_32": "https://account-profile-images.epilot.cloud/1/avatar_32x32.png"
  },
  "properties": [
    {
      "name": "profileImageName",
      "value": "avatar.png"
    }
  ]
}
```

</details>

---

### `getUserLoginParameters`

Get user organization login parameters by username

`GET /v1/users/username/{username}:getLoginParameters`

```ts
const { data } = await client.getUserLoginParameters({
  username: 'example',
})
```

<details>
<summary>Response</summary>

```json
{
  "login_parameters": [
    {
      "organization_id": "123",
      "organization_name": "epilot GmbH",
      "organization_type": "Vendor",
      "organization_use": "Production",
      "cognito_region": "eu-central-1",
      "cognito_user_pool_id": "eu-central-sample",
      "cognito_user_pool_client_id": "asbkh213ehkquwhdi",
      "cognito_oauth_domain": "epilot-org-123",
      "cognito_oauth_scopes": ["openid"],
      "oauth_response_type": "code",
      "passkey_enabled": true
    }
  ]
}
```

</details>

---

## Schemas

### `NavigationId`

Navigation unique identifier - a hash of the normalized navigation payload (name + configuration). Identical navigations across orgs will have the same ID.

```ts
type NavigationId = string
```

### `Navigation`

A customized workplace navigation configuration. The ID is a content-hash, so identical configurations will have the same ID.

```ts
type Navigation = {
  id: string
  name: string
  configuration: Record<string, Array<{
    key: string
  } | {
    name: string
    subItems: Array<{
      key: { ... }
    }>
  }>>
}
```

### `NavigationCreateRequest`

Request payload to create a new navigation configuration

```ts
type NavigationCreateRequest = {
  name: string
  configuration: Record<string, Array<{
    key: string
  } | {
    name: string
    subItems: Array<{
      key: { ... }
    }>
  }>>
}
```

### `NavigationConfiguration`

Navigation configuration organized by sections. Each section contains an array of navigation items.


```ts
type NavigationConfiguration = Record<string, Array<{
  key: string
} | {
  name: string
  subItems: Array<{
    key: string
  }>
}>>
```

### `NavigationItem`

A navigation item - either a simple key item or a group with sub-items

```ts
type NavigationItem = {
  key: string
} | {
  name: string
  subItems: Array<{
    key: string
  }>
}
```

### `NavigationKeyItem`

A simple navigation item with a key

```ts
type NavigationKeyItem = {
  key: string
}
```

### `NavigationGroupItem`

A navigation group containing sub-items

```ts
type NavigationGroupItem = {
  name: string
  subItems: Array<{
    key: string
  }>
}
```

### `InviteToken`

Token used to invite a user to epilot

```ts
type InviteToken = string
```

### `PartnerInvitationToken`

Token used to invite a partner user to epilot

```ts
type PartnerInvitationToken = string
```

### `VerificationToken`

```ts
type VerificationToken = string
```

### `GroupId`

Group unique identifier

```ts
type GroupId = string
```

### `UserId`

User's unique identifier

```ts
type UserId = string
```

### `Query`

```ts
type Query = string
```

### `OrganizationId`

```ts
type OrganizationId = string
```

### `Limit`

```ts
type Limit = number
```

### `Offset`

```ts
type Offset = number
```

### `Hydrate`

```ts
type Hydrate = boolean
```

### `Username`

```ts
type Username = string
```

### `UserInvitationPayload`

```ts
type UserInvitationPayload = {
  email?: string
  language?: "en" | "de"
  roles?: string[]
}
```

### `UserActivationPayload`

```ts
type UserActivationPayload = {
  display_name?: string
  password?: string
}
```

### `UserVerificationPayload`

```ts
type UserVerificationPayload = {
  password?: string
}
```

### `UserV2`

```ts
type UserV2 = {
  id?: string
  organization_id?: string
  created_at?: string // date-time
  activated_at?: string // date-time
  display_name?: string
  status?: "Active" | "Pending" | "Deactivated" | "Deleted"
  email?: string // email
  draft_email?: string // email
  draft_email_expires_at?: string // date-time
  department?: string
  phone?: string
  secondary_phone?: string
  mfa_enabled?: boolean
  has_passkeys?: boolean
  phone_verified?: boolean
  token?: string
  signature?: string
  is_signature_enabled?: boolean
  preferred_language?: string
  custom_start_page?: string
  custom_navigation?: string
  override_release_channel?: "canary" | "rc" | "stable" | null
  feature_preferences?: Record<string, unknown>
  image_uri?: {
    original?: string // uri
    thumbnail_32?: string // uri
  }
  favorites?: Record<string, unknown>
  email_notification_setting?: Record<string, unknown>
  properties?: Array<{
    name: string
    value: string
  }>
}
```

### `User`

```ts
type User = {
  id: string
  organization_id: string
  email: string // email
  display_name?: string
  name: string
  preferred_language: string
  signature?: string
  custom_navigation?: string
  roles: string[]
  image_uri?: {
    original?: string // uri
    thumbnail_32?: string // uri
  }
  properties: Array<{
    name: string
    value: string
  }>
}
```

### `LoginParameters`

```ts
type LoginParameters = {
  organization_id?: string
  organization_name?: string
  organization_type?: string
  organization_use?: string
  cognito_region?: string
  cognito_user_pool_id?: string
  cognito_user_pool_client_id?: string
  cognito_oauth_domain?: string
  cognito_oauth_scopes?: string[]
  oauth_response_type?: "code" | "token"
  passkey_enabled?: boolean
}
```

### `GroupImageUri`

Group's profile image or gradient colors. Supports uploaded image URLs and generated gradient avatars.

```ts
type GroupImageUri = {
  original?: string // uri
  thumbnail_32?: string // uri
  thumbnail_64?: string // uri
  gradient_colors?: string[]
}
```

### `CreateGroupReq`

```ts
type CreateGroupReq = {
  name: string
  user_ids?: string[]
  image_uri?: {
    original?: string // uri
    thumbnail_32?: string // uri
    thumbnail_64?: string // uri
    gradient_colors?: string[]
  }
  abbreviation?: string
}
```

### `UpdateGroupReq`

```ts
type UpdateGroupReq = {
  name?: string
  user_ids?: string[]
  image_uri?: {
    original?: string // uri
    thumbnail_32?: string // uri
    thumbnail_64?: string // uri
    gradient_colors?: string[]
  }
  abbreviation?: string
}
```

### `Group`

```ts
type Group = {
  id: string
  org_id: string
  name: string
  created_at: string
  updated_at: string
  created_by?: string
  crt_assignee?: {
    id?: string
    organization_id?: string
    created_at?: string // date-time
    activated_at?: string // date-time
    display_name?: string
    status?: "Active" | "Pending" | "Deactivated" | "Deleted"
    email?: string // email
    draft_email?: string // email
    draft_email_expires_at?: string // date-time
    department?: string
    phone?: string
    secondary_phone?: string
    mfa_enabled?: boolean
    has_passkeys?: boolean
    phone_verified?: boolean
    token?: string
    signature?: string
    is_signature_enabled?: boolean
    preferred_language?: string
    custom_start_page?: string
    custom_navigation?: string
    override_release_channel?: "canary" | "rc" | "stable" | null
    feature_preferences?: Record<string, unknown>
    image_uri?: {
      original?: { ... }
      thumbnail_32?: { ... }
    }
    favorites?: Record<string, unknown>
    email_notification_setting?: Record<string, unknown>
    properties?: Array<{
      name: { ... }
      value: { ... }
    }>
    crt_index?: number
  }
  users?: Array<{
    id?: string
    organization_id?: string
    created_at?: string // date-time
    activated_at?: string // date-time
    display_name?: string
    status?: "Active" | "Pending" | "Deactivated" | "Deleted"
    email?: string // email
    draft_email?: string // email
    draft_email_expires_at?: string // date-time
    department?: string
    phone?: string
    secondary_phone?: string
    mfa_enabled?: boolean
    has_passkeys?: boolean
    phone_verified?: boolean
    token?: string
    signature?: string
    is_signature_enabled?: boolean
    preferred_language?: string
    custom_start_page?: string
    custom_navigation?: string
    override_release_channel?: "canary" | "rc" | "stable" | null
    feature_preferences?: Record<string, unknown>
    image_uri?: {
      original?: { ... }
      thumbnail_32?: { ... }
    }
    favorites?: Record<string, unknown>
    email_notification_setting?: Record<string, unknown>
    properties?: Array<{
      name: { ... }
      value: { ... }
    }>
  }>
  image_uri?: {
    original?: string // uri
    thumbnail_32?: string // uri
    thumbnail_64?: string // uri
    gradient_colors?: string[]
  }
  abbreviation?: string
}
```

### `SignupUserPayload`

```ts
type SignupUserPayload = {
  organization_detail?: {
    type: "Vendor" | "Partner"
    name: string
    pricing_tier: string
    email: string
    phone?: string
    website?: string
    is_privacy_policy_checked?: boolean
    is_terms_and_conditions_checked?: boolean
  }
  user_detail?: {
    full_name: string
    email: string // email
    password: string
  }
  language?: "en" | "de"
}
```

### `OrganizationDetail`

```ts
type OrganizationDetail = {
  type: "Vendor" | "Partner"
  name: string
  pricing_tier: string
  email: string
  phone?: string
  website?: string
  is_privacy_policy_checked?: boolean
  is_terms_and_conditions_checked?: boolean
}
```

### `CognitoDetails`

```ts
type CognitoDetails = {
  cognito_region?: string
  cognito_user_pool_id?: string
  cognito_user_pool_client_id?: string
  cognito_user_pool_arn?: string
}
```

### `UserDetail`

```ts
type UserDetail = {
  full_name: string
  email: string // email
  password: string
}
```

### `Organization`

```ts
type Organization = {
  id?: string
  type?: "Vendor" | "Partner"
  name?: string
  signature?: string
  symbol?: string
  pricing_tier?: string
  email?: string
  phone?: string
  website?: string
  address?: {
    country?: string
    city?: string
    postal_code?: string
    street?: string
    street_number?: string
  }
  logo_url?: string
  logo_thumbnail_url?: string
  is_unlicensed_org?: boolean
  cognito_details?: {
    cognito_region?: string
    cognito_user_pool_id?: string
    cognito_user_pool_client_id?: string
    cognito_user_pool_arn?: string
  }
}
```

### `DataPointsResponse`

```ts
type DataPointsResponse = Array<{
  id?: number
  actual_users?: number
  max_users_last_month?: number
  non_billable_users_last_month?: number
}>
```

### `DataPoint`

```ts
type DataPoint = {
  id?: number
  actual_users?: number
  max_users_last_month?: number
  non_billable_users_last_month?: number
}
```

### `UserSettingScope`

User setting scope. Values are limited to 64 characters.

```ts
type UserSettingScope = string
```

### `UserSettingKey`

User setting key. Values are limited to 128 characters.

```ts
type UserSettingKey = string
```

### `UserSettingValue`

The JSON value of a user setting. Objects are recommended for extensibility, but any JSON value is accepted up to 64 KiB when serialized as JSON.

```ts
type UserSettingValue = unknown
```

### `UserSetting`

```ts
type UserSetting = {
  scope: string
  key: string
  value: unknown
  created_at: string // date-time
  updated_at: string // date-time
}
```

### `UserSettingsListResponse`

```ts
type UserSettingsListResponse = {
  results: Array<{
    scope: string
    keys: string[]
  }>
}
```

### `UserSettingsScopeResponse`

```ts
type UserSettingsScopeResponse = {
  scope: string
  settings: Record<string, unknown>
}
```

### `Passkey`

```ts
type Passkey = {
  credential_id?: string
  friendly_name?: string
  created_at?: string // date-time
  transports?: string[]
  aaguid?: string
}
```

### `PasskeyAuthenticationOptions`

```ts
type PasskeyAuthenticationOptions = {
  options?: object
  challenge_token?: string
}
```

### `PasskeyRegistrationOptions`

```ts
type PasskeyRegistrationOptions = {
  options?: object
  challenge_token?: string
}
```

### `PasskeyRegistrationResponse`

```ts
type PasskeyRegistrationResponse = {
  challenge_token: string
  registration_response: object
  friendly_name?: string
}
```
