Personyze Personyze developer docs
Open Personyze
Users

REST User Columns object

Discover which custom fields exist on user profiles in your account.

Personyze developer documentation Questions: support@personyze.com

For information about how REST API works, see rest main page.

Returns the list of custom fields that exist on user profiles in your account. User records have no fixed set of columns — any key you send is stored — so this object is how an integration discovers what fields are actually there.

This is what populates the field dropdowns in the Zapier integration, and it is the right call to make if you are building a mapping UI of your own.

The endpoint URL is:

app.personyze.com/rest/users_columns

GET only.

Columns

Column Description
name The field name to use when reading or writing users.
title The human-readable label, as shown in the Personyze panel.

Select example

curl 'https://api:FD09908F25BECB09D78EBEA1DADFB618651F612D@app.personyze.com/rest/users_columns'
[{"name": "loyalty_tier", "title": "Loyalty tier"}, {"name": "account_manager", "title": "Account manager"}]

The list is small, so reading it whole is allowed.

Note

This object lists the custom fields configured for your account. The built-in fields that every account has — user_id, email, internal_id, first_name, last_name, phone, data_last_modified and the other standard profile fields — are documented on the users page and are always writable whether or not they appear here.