2024-04-17
about 1 year ago
New risk level "critical"
"critical"
You can now enable a fifth risk level "critical"
in your workspace settings.
- List all cases (
GET /v1/cases
)- ✨ [Added] possible values of
data[].risk.level
in response body:"critical"
- ✨ [Added] possible values of
- Create a case (
POST /v1/cases
), Update a case (PATCH /v1/cases/{id}
), Retrieve a case (GET /v1/cases/{id}
)- ✨ [Added] possible values of
risk.level
in response body:"critical"
- ✨ [Added] possible values of
- Create an automatic risk (
POST /v1/cases/{id}/risks
)- ✨ [Added] possible values of
level
in request body:"critical"
- ✨ [Added] possible values of
risk.level
in response body:"critical"
- ✨ [Added] possible values of
- List all activities (
GET /v1/activities
)- ✨ [Added] possible values of
data[].context.risk.level
in response body:"critical"
- ✨ [Added] possible values of
Set reviewed_at
when creating a Case review
reviewed_at
when creating a Case review- Create a case review (
POST /v1/cases/{id}/reviews
)- ✨ [Added] property
reviewed_at
in request body
- ✨ [Added] property
Custom property improvements
Increase the maxLength for text
custom property to 250
. It was previously 100
but not documented.
- Create a case (
POST /v1/cases
), Update a case (PATCH /v1/cases/{id}
)- ✨ [Added] maxLength validator to
custom_properties{.*}
in request body:250
- ✨ [Added] maxLength validator to
custom_properties{.*}
in response body:250
- ✨ [Added] maxLength validator to
- Retrieve a case (
GET /v1/cases/{id}
)- ✨ [Added] maxLength validator to
custom_properties{.*}
in response body:250
- ✨ [Added] maxLength validator to
individuals[].custom_properties{.*}
in response body:250
- ✨ [Added] maxLength validator to
companies[].custom_properties{.*}
in response body:250
- ✨ [Added] maxLength validator to
- Create a company (
POST /v1/companies
), Update a company (PATCH /v1/companies/{id}
), Create an individual (POST /v1/individuals
), Update an individual (PATCH /v1/individuals/{id}
)- ✨ [Added] maxLength validator to
custom_properties{.*}
in request body:250
- ✨ [Added] maxLength validator to
custom_properties{.*}
in response body:250
- ✨ [Added] maxLength validator to
- Retrieve a company (
GET /v1/companies/{id}
), Retrieve an individual (GET /v1/individuals/{id}
), Set individual relevance (POST /v1/individuals/{id}/set-relevant
)- ✨ [Added] maxLength validator to
custom_properties{.*}
in response body:250
- ✨ [Added] maxLength validator to
Address in company data operations
- Search companies (
GET /v1/company-data/search
)- ✨ [Added] required status to
street_address
,street_address_2
,postal_code
,city
,state
,region
,country
indata[].address
in response body
- ✨ [Added] required status to
- Fetch company data (
GET /v1/company-data/fetch/{search_ref}
)- ✨ [Added] required status to
street_address
,street_address_2
,postal_code
,city
,state
,region
,country
inaddress
in response body - ✨ [Added] required status to
street_address
,street_address_2
,postal_code
,city
,state
,region
,country
inmerged_individuals[].address
in response - ✨ [Added] required status to
street_address
,street_address_2
,postal_code
,city
,state
,region
,country
inmerged_companies[].address
in response body
- ✨ [Added] required status to