---
title: "Retrieve a paginated list of approval policies"
method: GET
path: "/v1/approval-policies"
tags: ["Approval Policies"]
---

# Retrieve a paginated list of approval policies

`GET /v1/approval-policies`

## 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 approval policies

- CountablePagedResponseApprovalPolicySchema
  - `items` ApprovalPolicySchema[], required — The list of items on the current page.
    - `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
    - `description` string, required — The description of the approval policy.
    - `teams` NameReferenceSchemaTeamSchema[], required — Team associated with the approval policy.
      - `id` string, uuid, required — Unique identifier for the referenced entity.
      - `name` string, required — Name of the referenced entity.
    - `is_default` boolean, required — Whether this is the default approval policy for the business.
    - `workflows` ApprovalWorkflowSchema[], required — The associated approval policy workflows
      - `type` 'DEFAULT' | 'ONE_TIME_EXPENSE' | 'RECURRING_EXPENSE', required
      - `levels` ApprovalLevelSchema[], required — The levels associated with the approval policy workflow.
        - `starting_amount_cents` integer, required — The amount cents the level starts from.
        - `steps` ApprovalStepSchema[], required — The associated approval steps.
          - `approvers` ApprovalStepApproversSchema, required
            - `users` EmailReferenceSchemaUserSchema[], required — The users assigned to approve the approval step.
              - …
            - `groups` NameReferenceSchemaApprovalGroupSchema[], required — The groups assigned to approve the approval step.
              - …
            - `dynamic` AbstractAssignee[], required — The dynamic approvers assigned to approve the approval step.
          - `notified_users` EmailReferenceSchemaUserSchema[], required — The users notified when a step is completed.
            - `id` string, uuid, required — Unique identifier for the referenced entity.
            - `email` string, required — Email 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)
