Skip to main content
GET
/
forms
/
getAll
Get all forms (public)
curl --request GET \
  --url https://api.octaviatech.app/cms/forms/getAll \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "statusCode": 200,
  "message": "OK",
  "data": {
    "items": [
      {
        "id": "{{objectId}}",
        "title": {
          "en": "Contact Us"
        },
        "slug": "contact-us",
        "isActive": true
      }
    ],
    "pagination": {
      "total": 1,
      "page": 1,
      "limit": 50,
      "totalPages": 1
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
Required range: x >= 1
Example:

1

limit
integer
Required range: 1 <= x <= 100
Example:

50

keyword
string
Example:

"contact"

includeDeleted
boolean
Example:

false

includeInactive
boolean
Example:

false

Response

200 - application/json

OK

The response is of type any.