---
title: "List Legal Entity's Account Logins"
method: GET
path: "/logins"
---

# List Legal Entity's Account Logins

`GET /logins`

Lists _Account Login_ for the current _Legal Entity_.

Retrieving a login's information is a **three-step process**:
1. the returned objects will contain, amongst other information, the `id` of the Account Login.
1. the hosted url can be obtained by calling `/logins/<id>/sessions`
1. the Account Login data will be available following the previous response's `url`

### Example

1. Request all logins for the current Legal Entity: `/logins`
1. Response:
   ```
   [
      {
        "id": "abc1234",
        "name": "Account for Tax Office in Nevada",
        "region_code": "NV",
        "login_url": "https://tax.neveda.gov/login",
        "url": "https://tax.neveda.gov/login",
        "is_supported": true,
      },
      ...
  ]
   ```

## Response `200`

Successful Response

- PlatformLegalEntityAccountLogin[]
  - `id` string, required — The identifier of this Account Login
  - `name` string, required — The name of the Login
  - `location_id` string, required — The location id the login belongs to
  - `login_url` string, required — This field is deprecated, please use url.
  - `url` string, required — The url pointing to the login page for this Login

---

[API](https://skmtc.net/mosey/apis/mosey-api.md) · [All operations](https://skmtc.net/mosey/apis/mosey-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mosey/mosey-api/versions/2121b0e65643/schema)
