GET
/
v1
/
Portfolio
/
FRISKScoreHistory
curl --request GET \
  --url https://api.creditriskmonitor.com/v1/Portfolio/FRISKScoreHistory \
  --header 'Authorization: <api-key>'
{
  "Success": true,
  "Data": {
    "TotalResults": 123,
    "ScoreType": "<string>",
    "Businesses": [
      {
        "BusinessId": 123,
        "BusinessName": "<string>",
        "Scores": [
          {
            "Year": 123,
            "Month": 123,
            "Score": 123
          }
        ]
      }
    ]
  },
  "ErrorCode": "<string>"
}

Use the Login endpoint to retrieve the SessionKey, then include it in the Authorization field for authentication.

Authorizations

Authorization
string
header
required

Enter the Session Key with the Bearer prefix, e.g. "Bearer abcde12345".

Query Parameters

StartDate
string

Start Date for score calculations

EndDate
string

End Date for score calculations

FirstRow
integer

The First Row to display

LastRow
integer

The Last Row to dispaly

Response

200
application/json
OK
Success
boolean
Data
object
ErrorCode
string