创建 N2 深度分析
curl --request POST \
--url https://bptest.mapleai.cc/api/open/investor-products/projects/{project_id}/deep-analysis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"force": false
}'import requests
url = "https://bptest.mapleai.cc/api/open/investor-products/projects/{project_id}/deep-analysis"
payload = { "force": False }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({force: false})
};
fetch('https://bptest.mapleai.cc/api/open/investor-products/projects/{project_id}/deep-analysis', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"code": 0,
"message": "操作成功",
"data": {},
"timestamp": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}开放接口 / Open Investor Products
创建 N2 深度分析
POST
/
api
/
open
/
investor-products
/
projects
/
{project_id}
/
deep-analysis
创建 N2 深度分析
curl --request POST \
--url https://bptest.mapleai.cc/api/open/investor-products/projects/{project_id}/deep-analysis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"force": false
}'import requests
url = "https://bptest.mapleai.cc/api/open/investor-products/projects/{project_id}/deep-analysis"
payload = { "force": False }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({force: false})
};
fetch('https://bptest.mapleai.cc/api/open/investor-products/projects/{project_id}/deep-analysis', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"code": 0,
"message": "操作成功",
"data": {},
"timestamp": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
是否强制重新生成