HomeGuidesAPI ReferenceChangelogDiscussions
HomeLog In
Guides

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
name_translationsHashName Translations
欄位名稱
測試欄位
hint_translationsHashHint Translaitons
欄位提示
請填入答案
field_idStringField ID
欄位ID
5ad86757e38809441400001b

Response Example

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