Skip to main content
GET
/
api
/
integration-services
/
customer
/
v1
/
risk-scoring-assessments
/
{guid}
Customer assessment
curl --request GET \
  --url 'https://{{baseUrl}}/api/integration-services/customer/v1/risk-scoring-assessments/{guid}' \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://{{baseUrl}}/api/integration-services/customer/v1/risk-scoring-assessments/{guid}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://{{baseUrl}}/api/integration-services/customer/v1/risk-scoring-assessments/{guid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "result": {
    "shortlink": "<string>",
    "guid": "<string>"
  }
}
{
"errors": [
{
"code": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

guid
string
required

The unique identifier of the assessment.

Response

OK

result
object