Entrench Fianly scoring study
curl --request POST \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/fianly_scoring_studies/{id}/entrench \
--header 'api_access_token: <api-key>'const options = {method: 'POST', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/fianly_scoring_studies/{id}/entrench', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/fianly_scoring_studies/{id}/entrench"
headers = {"api_access_token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){}{
"description": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}{}{}Integrations
Entrench Fianly scoring study
Entrench a completed Fianly scoring study.
POST
/
api
/
v1
/
accounts
/
{account_id}
/
fianly_scoring_studies
/
{id}
/
entrench
Entrench Fianly scoring study
curl --request POST \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/fianly_scoring_studies/{id}/entrench \
--header 'api_access_token: <api-key>'const options = {method: 'POST', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/fianly_scoring_studies/{id}/entrench', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/fianly_scoring_studies/{id}/entrench"
headers = {"api_access_token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){}{
"description": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}{}{}