GET
/
additional_fields
/
{id}
/
values
Get AdditionalFields Values
curl --request GET \
  --url https://api.neobrain.io/{version}/additional_fields/{id}/values \
  --header 'Authorization: Bearer <token>'
[
  {
    "fieldId": 123,
    "externalFieldId": "external_field_code",
    "name": "Field Name",
    "isVisible": true,
    "type": "Select",
    "values": [
      {
        "externalValueId": "external_value_code",
        "label": "Field Name"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

API token for the Authorization header parameter.

Headers

Accept-Language
string

Language identifier, using the ISO 639-1 specification. If none provided it will use the account default language. For additional info please access /v1/locales

Path Parameters

id
string
required

Resource identifier. x-externalFieldId OR id.

Response

Success

fieldId
integer

Field reference

externalFieldId
string

External field reference

Example:

"external_field_code"

name
string

Field label

Example:

"Field Name"

isVisible
boolean

Field visibility

Example:

true

type
string

Field type. Can hold one of the following values - Date, Select, Text. Case sensitive

Example:

"Select"

values
object[]