通过账号ID,pixel ID 解除绑定关系,POST请求
POST /account_remove_pixel HTTP/1.1
Host: /lb/api/v1/
请求参数:
{
"id": <String>,
"access_token": <String>,
"pixel_id": <String>,
"req_header": {
"search_id": <String>
}
}
字段 | 类型 | 注释 |
id | String | 账号ID |
access_token | String | 联系开发人员获取token,token是和公司主体绑定的 |
pixel_id | String | pixel_id |
req_header | Object | |
search_id | String | 唯一标识一个请求 |
返回的结果:
{
"resp_header":{
"code": <Int>,
"message": <String>,
"search_id" <String>:
}
}
字段 | 类型 | 注释 |
resp_header | Object | |
code | Int | 返回的编码,1:成功 |
message | String | 返回提示信息 |
search_id | String | 唯一标识一个请求 |
错误编码:
编码 | 注释 |
1001 | 系统异常 |
1002 | id 不能为空 |
1003 | id 参数无效 |
1011 | Facebook API 请求超时 |
1023 | pixel_id 不能为空 |