GET
/
v1
/
Portfolio
/
Folders
curl --request GET \
  --url https://api.creditriskmonitor.com/v1/Portfolio/Folders \
  --header 'Authorization: <api-key>'
{
  "Success": true,
  "Data": [
    {
      "FolderId": 123,
      "UserId": 123,
      "FolderName": "<string>",
      "DateCreated": "2023-11-07T05:31:56Z",
      "DateUpdated": "2023-11-07T05:31:56Z"
    }
  ],
  "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".

Response

200
application/json
OK
Success
boolean
Data
object[]

ApiPortfolioFolder

ErrorCode
string