添加联系人
调用AddCDPContact API添加联系人。
请求参数
参数名 | 类型 | 描述 | 是否必需 |
---|---|---|---|
Action | string | 取值:AddCDPContact。 | 是 |
LastName | string | 姓。 | 否 |
FirstName | string | 名。 | 否 |
Nickname | string | 昵称。 | 否 |
string | 电子邮件。 | 否 | |
Phone | string | 电话号码。 | 否 |
string | WhatsApp。 | 否 | |
Attributes | object | 自定义属性。例如:{"city": "Shanghai", "age": 18} | 否 |
ContactListIds | array | 整型数组,数组每一项为联系人列表id。 | 否 |
请提供电子邮件、电话号码或 WhatsApp 中的至少一个联系方式。这些字段不能全部为空。
响应元素
参数名 | 类型 | 描述 | 是否必需 |
---|---|---|---|
RetCode | int | 当RetCode不为0时,Message中显示具体的错误描述。如果RetCode为0,则不返回Message。 | 是 |
Action | string | 操作名称。 | 是 |
Message | string | 当RetCode不为0时,Message中显示具体的错误描述。 | 是 |
Id | int | 联系人id。 | 是 |
请求示例
curl --request POST 'https://api.uspeedo.com/api' \
--header 'Content-Type: application/json' \
-d '{
"Action": "AddCDPContact",
"LastName": "last name",
"FirstName": "first name",
"Nickname": "nickname",
"Email": "contact@uspeedo.com",
"Phone": "(1)1234567890",
"ContactListIds": [1]
}'
返回示例
{
"Action": "AddCDPContactResponse",
"Message": "",
"RetCode": 0,
"Id": 1
}