diff --git a/views/users/api.hbs b/views/users/api.hbs
index 1a322032..5fed44e0 100644
--- a/views/users/api.hbs
+++ b/views/users/api.hbs
@@ -142,6 +142,45 @@
curl -XPOST {{serviceUrl}}api/delete/B16uVTdW?access_token={{accessToken}} \
--data 'EMAIL=test@example.com'
+POST /api/field/:listId – {{#translate}}Add new custom field{{/translate}}
+
+
+ {{#translate}}This API call creates a new custom field for a list.{{/translate}}
+
+
+
+ GET {{#translate}}arguments{{/translate}}
+
+
+ - access_token – {{#translate}}your personal access token{{/translate}}
+
+
+
+ POST {{#translate}}arguments{{/translate}}
+
+
+ - NAME – {{#translate}}field name{{/translate}} ({{#translate}}required{{/translate}})
+ - TYPE – {{#translate}}one of the following types:{{/translate}}
+
+ {{#each allowedTypes}}
+ -
+ {{type}} {{description}}
+
+ {{/each}}
+
+
+ - GROUP – {{#translate}}If the type is 'option' then you also need to specify the parent element ID{{/translate}}
+ - GROUP_TEMPLATE – {{#translate}}Template for the group element. If not set, then values of the elements are joined with commas{{/translate}}
+ - VISIBLE – yes/no, {{#translate}}if not visible then the subscriber can not view or modify this value at the profile page{{/translate}}
+
+
+
+ {{#translate}}Example{{/translate}}
+
+
+curl -XPOST {{serviceUrl}}api/field/B16uVTdW?access_token={{accessToken}} \
+--data 'NAME=Birthday&TYPE=birthday-us&VISIBLE=yes'
+
GET /api/blacklist/get – {{#translate}}Get list of blacklisted emails{{/translate}}