The method is used to obtain the values of the specified additional contact fields.
Principle of use
| Syntax and URL to call the method |
| https://api.selzy.com/en/api/getContactFieldValues?api_key=KEY&email=EMAIL&field_ids=1,2 |
| Arguments |
| api_key * |
API access key. |
| email * |
Valid Email Address. |
| field_ids * |
A set of id of additional fields separated by commas (eg "1,2,3,4"). |
| Return value |
| Returns a list of the specified additional fields and their values.
Example of the return value:
Response:
{
"result": {
"fieldValues": {
"1": "Field 1 value",
"2": "Field 2 value",
}
}
}
|