获取下户详情,包含账号信息,account_id,account_name等,GET请求
GET /get_aac_request_detail HTTP/1.1
Host: /lb/api/v1/
请求参数:
{
"ad_account_creation_request_id": <String>,
"access_token": <String>,
"req_header": {
"search_id": <String>
}
}
字段 | 类型 | 注释 |
ad_account_creation_request_id | String | 获取账号的请求ID |
access_token | String | 联系开发人员获取token,token是和公司主体绑定的 |
search_id | String | 唯一标识一个请求 |
返回的结果:
{
"resp_header": {
"code": <Int> ,
"message": <String> ,
"search_id": <String>
},
"data": {
"id": <String>,
"status": <String>,
"contact": {
"name": <String> ,
"email": <String>
},
"disapproval_reasons": [{
"reason": <String> ,
"note": <String>
}],
"request_change_reasons": [{
"field": <String> ,
"reason": <String> ,
"note": <String>
}],
"official_website_url": <String> ,
"legal_entity_name_in_local_language": <String> ,
"address_in_local_language": <String> ,
"promotable_page_ids": <List> ,
"promotable_urls": <List> ,
"promotable_app_ids": <List> ,
"business_registration_id": <String> ,
"vertical_v2": <String> ,
"subvertical_v2": <String> ,
"adaccounts": {
"data": [{
"name": <String> ,
"account_id": <String> ,
}]
}
}
字段 | 类型 | 注释 |
code | Int | 返回的编码,1:成功 |
message | String | 返回的提示信息 |
search_id | String | 唯一标识一个请求 |
data | Object | |
id | String | 获取账号的请求ID |
status | String | 下户状态 |
contact | Object | |
name | String | 提交申请的人员名称 |
String | 联系邮箱 | |
disapproval_reasons | Object | |
reason | String | 审批不通过的原因 |
note | String | 原因的详细注释 |
request_change_reasons | Object | |
field | String | 申请需要修改的字段 |
reason | String | 申请需要修改的原因 |
note | String | 原因的详细解释 |
official_website_url | String | 官网 |
legal_entity_name_in_local_language | String | 开户公司名称 |
address_in_local_language | String | 地址 |
promotable_page_ids | List<String> | 粉丝页ID列表 |
promotable_urls | List<String> | 推广链接列表 |
promotable_app_ids | List<String> | 应用ID列表 |
business_registration_id | String | 营业执照ID |
vertical_v2 | String | 行业-新版本 |
subvertical_v2 | String | 子行业-新版本 |
adaccounts | Object | |
data | JsonArray | |
name | String | 账号名称 |
account_id | String | 账号ID |
错误编码:
编码 | 注释 |
1001 | 系统异常 |