GET
/
ca
/
api
/
v1
/
custom-fields
List Custom Fields
curl --request GET \
  --url https://api.meetcampfire.com/ca/api/v1/custom-fields \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "id": 123,
      "app": "<string>",
      "model": "<string>",
      "name": "<string>",
      "label": "<string>",
      "field_type": "text",
      "options": "<any>",
      "is_required": true,
      "display_order": -1,
      "is_active": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

app
string

App name

is_active
boolean

Filter by active status

limit
integer

Number of results to return per page.

model
string

Model name

offset
integer

The initial index from which to return the results.

Response

200 - application/json

The response is of type object.