Get Custom Fields

Function

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

URL

GET API_DOMAIN/v1/custom_fields

Response fields

Response fieldsTypeDescriptionExample
typeStringColumn Type for the Custom Field
欄位類別
  • text_ (only support text type)
name_translationsHashName Translations
欄位名稱
  • 測試欄位_ (max length of each language: 35)
hint_translationsHashHint Translaitons
欄位提示
  • 請填入答案_ (max length of each language: 35)
field_idStringField ID
欄位ID
5ad86757e38809441400001b

Response Example

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

Did this page help you?