This command inserts new list values into existing user defined list type fields.
http://www.myserver.com/evj/ExtraView/ev_api.action?
user_id=username
&password=password
&statevar=add_udf_list
&udf_name=my_field
&udf_values=val
&access_token=token-value
To add more than one list value with a single API command, you need to have encoded the tab character separator in your API command.
This example adds xxx, yyy and zzz as values to a UDF named my_field.
http://www.myserver.com/evj/ExtraView/ev_api.action? user_id=username&password=password &STATEVAR=add_udf_list&UDF_NAME=my_field &UDF_VALUES=xxx%09yyy%09zzz
The optional access_token
parameter allows you to use a valid OAuth2 token obtained with the get_token
command. If you provide the access_token
parameter, then the user_id
and password
parameters should not be provided. This prevents the password being sent in clear text over your network connection.