> For the complete documentation index, see [llms.txt](https://docs-old.telematicssdk.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-old.telematicssdk.com/response-codes/archive/back-end-to-app-integration/get-the-data-to-the-android-app/tracks/get-available-user-roles.md).

# Get available user roles

```
/**
* List dictionary track type. Can use for changing track type.
* See also [changeTrackOrigin]
*
* @param dictionaryLocale Language in which tracks are to arrive.
*/
fun *getTrackOriginDict(dictionaryLocale: Locale): Array<TrackOriginDictionary>
```

<br>

**Response:**<br>

```
Array of
class TrackOriginDictionary(
       /**
        * The human-readable name.
        */
       var name: String?,

       /**
        * The trip type code.
        */
       var code: String?,

       var canBeSelected: Boolean
)
```
