CaraCara API

List forms

Retrieve all forms for the tenant.

Retrieve all forms for the tenant.

GET
/forms

Authorization

AuthorizationRequiredBearer <token>

Use your API key (sk_live_* or sk_test_*) as the Bearer token.

In: header

curl -X GET "https://platform.caramedical.com/api/v1/forms" \
  -H "Authorization: Bearer <token>"

List of forms.

{
  "forms": [
    {
      "id": "string",
      "name": "string",
      "slug": "string",
      "description": "string",
      "fields": [
        {}
      ],
      "isActive": true,
      "submissionsCount": 0,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}