客源带看OpenApi
客源带看OpenApi
1、查询客源带看信息
BASIC
Path: /customer/inspect/listCustomerInspectByUuids
Method: POST
Desc:
PATH前缀:/api/jediopenplatformopenapi
REQUEST
Query:
name | value | required | desc |
---|---|---|---|
param[0] | YES | 带看UUID集合(即:listValidPropertyInspectionByUuids返回的brokerageWorkId) |
Request Demo:
{
"param": [
"1009829697627881472",
"88828282882828",
"896096369171759104"
]
}
RESPONSE
Headers:
name | value | required | desc |
---|---|---|---|
content-type | application/json;charset=UTF-8 | NO |
Body:
name | type | desc |
---|---|---|
responseCode | string | |
responseMessage | string | |
responseType | string | |
errorDataMap | object | |
|─key | object | |
data | array | |
|─ | object | |
|─inspectUuid | string | 带看UUID(即:listValidPropertyInspectionByUuids返回的brokerageWorkId) |
|─inspectTypeCode | string | 带看类型code。keInspectType-buy:二手、keInspectType-rent:租房、keInspectType-newHouse:新房(含分销及代理) |
|─inspectPropertyOpenDTOList | array | 带看房源列表 |
|─ | object | |
|─intentionCode | string | 带看房源意向code(对应满意度评价)。keInspectIntention-best:非常满意、keInspectIntention-better:满意、keInspectIntention-good:一般、keInspectIntention-normal:不满意、keInspectIntention-bad:非常不满意 |
|─propertyUuid | string | 带看房源uuid |
Response Demo:
{
"responseCode": "1",
"responseMessage": "success",
"responseType": null,
"data": [
{
"inspectUuid": "1009829697627881472",
"inspectTypeCode": "keInspectType-buy",
"inspectPropertyOpenDTOList": [
{
"intentionCode": "keInspectIntention-best",
"propertyUuid": "cd4b757a4da54ec59bb1e53d7c8f1d46"
}
]
},
{
"inspectUuid": "88828282882828",
"inspectTypeCode": null,
"inspectPropertyOpenDTOList": null
},
{
"inspectUuid": "896096369171759104",
"inspectTypeCode": "keInspectType-buy",
"inspectPropertyOpenDTOList": [
{
"intentionCode": "keInspectIntention-best",
"propertyUuid": "cb1f72b8a9764f588076e5be666a959c"
},
{
"intentionCode": "keInspectIntention-best",
"propertyUuid": "63a21bc8a97d42688db377ab215fdd22"
},
{
"intentionCode": "keInspectIntention-best",
"propertyUuid": "e006df9c923947e8b93782b3365fd154"
}
]
}
]
}