Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{
    "error": 0,
    "error_text": "Successful operation",
    "result": [
        {
            "error": 0,
            "error_text": "Successful operation",
            "profile_id": "abcdefghijklmnqrstuvwxyz"
        }
    ]
}

Пример запроса XML

Code Block
<xml>
<token>e94ce55afc3e4e07bd64afb2227f8a5c</token>
<db_id>8</db_id>
<matching>email</matching>
<detect_geo>true</detect_geo>
<format>xml</format>
<skip_triggers>false</skip_triggers>
<data>
	<lead>
		<email>example@example.org</email>
		<_fname>Leonid</_fname>
		<_lname>Spartov</_lname>
		<_bdate>1990-02-22T21:00:00Z</_bdate>
		<_sex>M</_sex>
		<_regip>94.231.119.122</_regip>
		<custom_string>value1</custom_string>
		<custom_integer>42</custom_integer>
		<custom_date>1990-02-22T21:00:00Z</custom_date>
		<custom_tags>tag1, tag2</custom_tags>
		<custom_boolean>true</custom_boolean>
		<custom_enum>2</custom_enum>
		<custom_ip>94.231.119.122</custom_ip>
		<subscriptions>
			<subscription>
				<resource_id>3</resource_id>
				<channel>email</channel>
				<email>example333@example.org</email>
			</subscription>
			<subscription>
				<resource_id>3</resource_id>
				<channel>phone</channel>
				<phone>712345678550</phone>
			</subscription>
			<subscription>
				<resource_id>3</resource_id>
				<channel>push</channel>
				<push_data>
					<subscription_id>ONEOF77THESE11DAYS11dd1</subscription_id>
					<provider>Firefox</provider>
				</push_data>
			</subscription>
		</subscriptions>
	</lead>
	<lead>
		<email>example2@example.org</email>
		<_fname>Chuck</_fname>
		<_lname>Norris</_lname>
		<_bdate>1985-02-22T21:00:00Z</_bdate>
		<_sex>M</_sex>
		<_regip>94.232.119.122</_regip>
		<custom_string>value2</custom_string>
		<custom_integer>42</custom_integer>
		<custom_date>1920-02-22T21:00:00Z</custom_date>
		<custom_tags>tag3, tag4</custom_tags>
		<custom_boolean>false</custom_boolean>
		<custom_enum>3</custom_enum>
		<custom_ip>94.234.119.122</custom_ip>
		<subscriptions>
			<subscription>
				<resource_id>3</resource_id>
				<channel>email</channel>
				<email>example276@example.org</email>
			</subscription>
			<subscription>
				<resource_id>3</resource_id>
				<channel>phone</channel>
				<phone>73214562290</phone>
			</subscription>
			<subscription>
				<resource_id>3</resource_id>
				<channel>push</channel>
				<push_data>
					<subscription_id>CU86TYOU5INTO34LITT25LEPIE55CES</subscription_id>
					<provider>Chrome</provider>
				</push_data>
			</subscription>
		</subscriptions>
	</lead>
</data>
</xml>

Пример ответа XML

Code Block
<result>
    <error>0</error>
    <error_text></error_text>
    <result>
        <error>0</error>
        <error_text>Successful operation</error_text>
        <error_field></error_field>
        <profile_id>5dd3cfa5c484d021d6e5204f</profile_id>
    </result>
    <result>
        <error>0</error>
        <error_text>Successful operation</error_text>
        <error_field></error_field>
        <profile_id>5dd3cfd0c484d021d6e52050</profile_id>
    </result>
</result>

Возвращаемые параметры

ПараметрТипОписание
errorintКод ошибки, для всего запроса
error_textstringТекст ошибки, для всего запроса
dataarray of objectРезультаты обновления по профилям
data.errorintКод ошибки, для профиля
data.error_textstringТекст ошибки, для для профиля
data.profile_idstringИдентификатор профиля

...