---
title: "List Accounts"
method: GET
path: "/Accounts"
tags: ["Accounts"]
---

# List Accounts

`GET /Accounts`

This endpoint will return a list that contains Project you are connecting as and any subprojects.

#### Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Management_.

[Learn more about API scopes](/docs/platform/your-signalwire-api-space).

## Query parameters

- `FriendlyName` string
- `Page` integer
- `PageSize` integer
- `PageToken` string

## Response `200`

The request has succeeded.

- AccountListResponse — Response containing a list of accounts.
  - `uri` string, required — The URI of the current page.
  - `first_page_uri` string, required — The URI of the first page.
  - `next_page_uri` string, nullable, required — The URI of the next page. Null if there are no more results.
  - `previous_page_uri` string, nullable, required — The URI of the previous page. Null if this is the first page.
  - `page` integer, required — The current page number (zero-indexed).
  - `page_size` integer, required — The number of results per page.
  - `accounts` Account[], required — List of accounts.
    - `sid` string, uuid, required — Universal Unique Identifier.
    - `friendly_name` string, required — The name of the Project.
    - `status` 'active', required — The status of the Project.
    - `auth_token` string, required — The authorization token for this Project. Always returns 'redacted' for security.
    - `date_created` string, required — The date and time this Project was created, in RFC 2822 format.
    - `date_updated` string, required — The date and time this Project was last updated, in RFC 2822 format.
    - `type` 'Full', required — The type of the Project.
    - `owner_account_sid` string, uuid, required — Universal Unique Identifier.
    - `region_preference` string, required — The preferred region for the Project.
    - `uri` string, required — The URI for the Project.
    - `subproject` boolean, required — Whether this project is a sub-project of another project.
    - `signing_key` string, nullable, required — The signing key for the Project. Only returned once when a subproject is created. Subsequent requests return null.
    - `subresource_uris` SubresourceUris, required — A Map of sub-resources that are linked to the given Project.
      - `addresses` unknown, required
      - `available_phone_numbers` string, required — URI for available phone numbers.
      - `applications` string, required — URI for applications.
      - `authorized_connect_apps` unknown, required
      - `calls` string, required — URI for calls.
      - `conferences` string, required — URI for conferences.
      - `connect_apps` unknown, required
      - `incoming_phone_numbers` string, required — URI for incoming phone numbers.
      - `keys` unknown, required
      - `notifications` unknown, required
      - `outgoing_caller_ids` unknown, required
      - `queues` string, required — URI for queues.
      - `recordings` string, required — URI for recordings.
      - `sandbox` unknown, required
      - `sip` unknown, required
      - `short_codes` unknown, required
      - `messages` string, required — URI for messages.
      - `transcriptions` string, required — URI for transcriptions.
      - `usage` unknown, required

## Other responses

- `400` — The request was invalid or cannot be processed. Check the error details for more information.
- `401` — Authentication failed. Please verify your credentials and try again.
- `422` — The request could not be processed due to validation errors. Check the error details for more information.

---

[API](https://skmtc.net/signalwire/apis/compatibility-api.md) · [All operations](https://skmtc.net/signalwire/apis/compatibility-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/signalwire/compatibility-api/revisions/e6faba43acd7/schema)
