List All Forms

GET/v1/forms

Returns an array of forms created by your team.

Authorization

x-api-key x-team-id
x-api-key<token>

In: header

x-team-id<token>

In: header

Response Body

application/json

application/json

fetch("https://example.com/v1/forms", {  method: "GET"})
[
  {
    "id": "string",
    "name": "string",
    "is_enabled": true,
    "limit": null,
    "honeypot_field": null,
    "redirect_url": null,
    "success_title": "string",
    "success_message": "string",
    "created_at": 0,
    "last_submission_at": null
  }
]
{
  "message": "string"
}