Custom Field API Read
Marcel Ursprung avatar
Written by Marcel Ursprung
Updated over a week ago

Visit api.envoke.com to test APIs and get examples in 20+ languages

Return a list of custom fields

Endpoint: /customfields
HTTP method: GETURL: https://e1.envoke.com/v1/customfields

Get a list of all account custom fields.

NOTE: All examples below are formatted for readability, actual GET requests require URI encoding. Each example below also includes a cURL request. Make sure to change the API_ID and API_KEY with your values.

Return all interests

https://e1.envoke.com/v1/customfields
curl -X GET -u API_ID:API_KEY "https://e1.envoke.com/v1/customfields"

Return type

Object with custom field id key / name value pairs
The key is the custom field id.
The value is the custom field name.

Custom field object key / value format example

{
   "123": "Secondary address",
   "124": "Primary product number": ,
   "125": "Reference number"
}
Did this answer your question?