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

# List accounts

`GET /v1/account`

## Query parameters

- `offset` integer
- `limit` integer
- `sort_by` 'name'
- `sort_asc` boolean
- `created_after` string, date-time
- `created_before` string, date-time

## Response `200`

OK

- object — Paginated response
  - `data` Account[], required — List of accounts
    - `account_id` string, required — ID of an account
    - `account_name` string, required — Name of the account
    - `alert_emails` string[], required — List of email addresses to send alert emails to
    - `billing_address` PostalAddress, required — Postal address details
      - `City` string, required — City of the postal address
      - `Country` string, required — Two-letter country code
      - `Line1` string, required — First line of the postal address
      - `Line2` string — Second line of the postal address
      - `PostalCode` string, required — Postal (ZIP) code of the postal address
      - `State` string, required — State or province of the postal address
    - `primary_contact` string, required — Name of the primary contact
    - `primary_email` string, email, required — Email of the primary contact
    - `primary_phone` string, required — Phone number of the primary contact
  - `pagination` Pagination, required
    - `next_offset` integer — Next offset to use for pagination. If this field is not present, that indicates there are no more items to fetch.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `500` — Internal server error

---

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