Get Custom Fields

Function

To get custom fields within customer data.
獲取顧客自訂欄位

URL

GET <<api_domain>>/v1/custom_fields

Response fields

Response fields

Type

Description

Example

type

String

Column Type for the Custom Field
欄位類別

  • text_ (only support text type)

name_translations

Hash

Name Translations
欄位名稱

  • 測試欄位_ (max length of each language: 35)

hint_translations

Hash

Hint Translaitons
欄位提示

  • 請填入答案_ (max length of each language: 35)

field_id

String

Field ID
欄位ID

5ad86757e38809441400001b

Response Example

[
    {
        "type": "text",
        "name_translations": {
            "zh-hant": "測試欄位",
            "en": "Test Field"
        },
      	"hint_translations": {
            "zh-hant": "請填入答案"
        },
        "field_id": "5ad86757e38809441400001b"
    }
]