---
title: "Retrieve a paginated list of teams"
method: GET
path: "/v1/teams"
tags: ["Teams"]
---

# Retrieve a paginated list of teams

`GET /v1/teams`

## Query parameters

- `created_at__gte` string, date-time
- `created_at__lte` string, date-time, nullable
- `order_by` 'created_at' | '-created_at'
- `page` integer
- `page_size` integer

## Response `200`

A paginated list of teams

- CountablePagedResponseTeamSchema
  - `items` TeamSchema[], required — The list of items on the current page.
    - `id` string, uuid, required — Unique identifier for the team.
    - `name` string, required — Name of the team.
    - `managers` EmailReferenceSchemaUserSchema[], required — List of managers for the team.
      - `id` string, uuid, required — Unique identifier for the referenced entity.
      - `email` string, required — Email of the referenced entity.
    - `members` EmailReferenceSchemaUserSchema[], required — List of members in the team.
      - `id` string, uuid, required — Unique identifier for the referenced entity.
      - `email` string, required — Email of the referenced entity.
    - `approval_policies` BaseApprovalPolicySchema[], required — A list of approval policies assigned to this team.
      - `id` string, uuid, required — The unique identifier of the approval policy.
      - `name` string, required — The name of the approval policy.
      - `type` 'SPENDING' | 'PERSONAL_REIMBURSEMENT' | 'TRANSACTION_REVIEW' | 'BILL_APPROVAL' | 'FUNDS_RELEASE', required
    - `custom_fields` NameReferenceSchemaCustomFieldSchema[], required — A list of custom fields assigned to this team.
      - `id` string, uuid, required — Unique identifier for the referenced entity.
      - `name` string, required — Name of the referenced entity.
  - `page` integer, required — The current page number.
  - `page_size` integer, required — The number of items per page.
  - `created_at__lte` string, date-time, required — The most recent date for which results are included.
  - `created_at__gte` string, date-time, required — The least recent date for which results are included.
  - `ordered_by` 'created_at' | '-created_at', required
  - `pages` integer, required — The total number of pages available.
  - `count` integer, required — The total number of items available.

---

[API](https://skmtc.dev/floatfinancial/apis/float-public-api.md) · [All operations](https://skmtc.dev/floatfinancial/apis/float-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/floatfinancial/float-public-api/revisions/a3c42eb1b312/schema)
