# Login Preferences

Manage your authentication methods


## Servers

Sandbox environment
```
https://api.sbx.transmitsecurity.io/cis
```

Production environment (US)
```
https://api.transmitsecurity.io/cis
```

Production environment (EU)
```
https://api.eu.transmitsecurity.io/cis
```

Production environment (CA)
```
https://api.ca.transmitsecurity.io/cis
```

Production environment (AU)
```
https://api.au.transmitsecurity.io/cis
```

## Security

### bearer

Type: http
Scheme: bearer
Bearer Format: JWT

### UserAccessToken

A token returned upon end-user authentication, which provides access to resources and data for the user and app for which it was generated

Type: http
Scheme: bearer
Bearer Format: JWT

### AdminAccessToken

A token generated by a management application using the [token endpoint](/openapi/token.openapi/other/getaccesstoken). It provides access to all resources for the tenant and its apps

Type: oauth2

### ClientAccessToken

A token generated by an end-user application using the [token endpoint](/openapi/token.openapi/other/getaccesstoken). It provides access to resources and data on the tenant level or associated with the specific application (but not other apps in the tenant)

Type: oauth2

### OrgAdminAccessToken

A token returned upon B2B authentication for a user that has the organizationAdmin or organizationCreator role.

Type: oauth2

## Download OpenAPI description

[Login Preferences](https://developer.transmitsecurity.com/_bundle/openapi/user/login-preferences.openapi.yaml)

## Other

### Get login methods

 - [GET /loginPreferences/{appId}](https://developer.transmitsecurity.com/openapi/user/login-preferences.openapi/other/getloginpreferencesbyappbyid.md): Retrieves all login methods for a specific application. Required permissions: apps:read, *:read, config:read, authentication-methods:read, [appId]:read.

### Update login methods

 - [PUT /loginPreferences/{appId}/authMethods](https://developer.transmitsecurity.com/openapi/user/login-preferences.openapi/other/updateappauthmethods.md): Updates login methods of a specific application. Note: Fields that are objects cannot be partially updated, since the new value you set will just replace the current one. Required permissions: apps:edit, *:edit, config:edit, authentication-methods:edit, [appId]:edit.

### Create password dictionary

 - [POST /v1/applications/{appId}/password-dictionary](https://developer.transmitsecurity.com/openapi/user/login-preferences.openapi/other/createpassworddictionary.md): Create a password dictionary for a specific application

### Get password dictionary

 - [GET /v1/applications/{appId}/password-dictionary](https://developer.transmitsecurity.com/openapi/user/login-preferences.openapi/other/getpassworddictionary.md): Get password dictionary for specified application

### Add words to password dictionary

 - [PUT /v1/applications/{appId}/password-dictionary/add](https://developer.transmitsecurity.com/openapi/user/login-preferences.openapi/other/updatepassworddictionary.md): Add words to password dictionary for a specific application

### Remove words from password dictionary

 - [PUT /v1/applications/{appId}/password-dictionary/remove](https://developer.transmitsecurity.com/openapi/user/login-preferences.openapi/other/deletepassworddictionary.md): Remove words from password dictionary for a specific application

