Skip to main content
GET
/
v1
/
custom-fields
/
List All Custom Fields
curl --request GET \
  --url https://api.nedzo.ai/v1/custom-fields/ \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 123,
  "message": "<string>",
  "data": {
    "custom_fields": [
      {
        "name": "<string>",
        "description": "<string>",
        "field_key": "<string>",
        "data_type": "<string>",
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    ],
    "skip": 123,
    "limit": 123,
    "totalCount": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

keyword
string | null
skip
integer
default:0
limit
integer
default:20

Response

Successful Response

status_code
integer
required
message
string
required
data
object | null