It is a method to get the list of user fields.
Principle of use
Syntax and URL to call the method |
getFields () |
https://api.selzy.com/en/api/getFields?format=json&api_key=KEY |
Arguments | |
api_key * | API access key. |
Return value |
JSON array, each array element is an object with the id, name, type, is_visible and view_pos fields. See descriptions of these fields in the description of arguments of the createField method.Example of the return value:
{ "result":[ {"id":21575,"name":"Name","type":"string","is_visible":1,"view_pos":1}, {"id":1255,"name":"Lastname","type":"string", is_visible":1,"view_pos":1} ] } |