Skip to main content
GET
List forms

Authorizations

Authorization
string
header
required

Paubox API key sent as Authorization: Bearer YOUR_API_KEY. API keys are created in the Paubox dashboard and must have the "forms" scope; a key without the forms scope receives 401 Unauthorized. A valid key used against a resource that belongs to a different customer receives 403 Forbidden.

Query Parameters

customer_id
integer
required

Your Paubox customer ID. Requests for a customer you do not have access to return 403.

form_id
string<uuid>

Filter the results to a single form by its UUID.

Substring match against the form title or description.

archived
boolean

Filter by archived state.

active
boolean

Filter by active state.

order_by
enum<string>
default:created_at

Field to order results by. Unknown values fall back to created_at.

Available options:
created_at,
title,
updated_at,
submission_count
order
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc
page
integer
default:1

Page number to return.

items
integer
default:50

Number of forms per page (maximum 100).

Required range: x <= 100

Response

Paginated list of forms

results
object[]
page_info
object