How to Update Custom Risk Category via API

This guide provides instructions for updating a tenants risk category through the Credo AI API. It assumes the use of environment variables for configuration and relies on Python and the requests library to interact with the API. For more details on the endpoint, see our swagger documentation.


Note

  • Self-hosted customers must replace https://api.credo.ai with your Credo AI URL
  • ${TENANT} is the tenant name used to log in to Credo AI
  • See Authentication for how to get the required ${ACCESS_TOKEN} 
  • User can add more levels of risks by adding
    {"name": "RISK NAME", "level": "#"}
    • The number can be incremented by +1
  •  0 is the highest risk level and anything after is lower

import requests

url = "https://api.credo.ai/api/v2/${TENANT}/tenant_info"

headers = {

      "Content-type": "application/vnd.api+json",

"Accept": "application/vnd.api+json",

"Authorization": "Bearer ${ACCESS_TOKEN}"

}

payload = {

 "data": {

"attributes": {

     "logo_url": "IMAGE URL",

     "risk_categories": [

       {"name": "High", "level": "0"},

       {"name": "Medium", "level": "1"},

       {"name": "Low", "level": "2"}

     ]

   },

   "type": "tenant_infos"

 }

}

response = requests.post(url, json=payload, headers=headers)

print(response.text)