Data DefinitionAdditional data fields for the customer module### HTTP Request[GET] /api/v6/accounts/custom_fields### Query Parameters#### Fields| Fields | Type | Description ||:------------------|---------|:-------------|| id | integer | Identifier || field_name | string | Field name || field_description | string | Field description || field_htmltype | string | Field type |#### Filtering| Fields | Support | Type | Description ||:-------|:--------|:-------:|-:---------------------|| id | eq,in | integer | Customer identifier || valid | is,in | integer | Valid or not |#### Sort| Sort (field) | Direction ||:-------------|-----------|| id | asc,desc |#### Limit & Offset| | Type | Description ||:-------|---------|--------------------------|| Limit | integer | Number of records to retrieve || Offset | integer | Number of records to skip |### ExampleHTTP RequesthttpGET api/v6/accounts/custom_fields HTTP/1.1Host: example.getflycrm.comContent-Type: application/jsonStatus200 OKResponsejson[ { "field_id": 1, "field_htmltype": "select", "field_name": "country_id", "field_description": "Country" }]