ESG Case
Get properties of an ESG case by its id
Request
Parameters
case_id*uuidUnique identifier of the case
fields(string (enum))[]Fields to include in the response
Default: ["id", "categories", "entity_id", "dashboard_url", "last_activity", "score", "start_date", "sub_categories", "summary", "title", "related_events_count", "related_documents_count", "translated_title", "translated_summary"]Values: "id", "categories", "entity_id", "dashboard_url", "last_activity", "score", "start_date", "sub_categories", "summary", "title", "related_events_count", "related_documents_count", "ungc_classification", "ungc_principles", "translated_title", "translated_summary"translatelanguage-codeIn which language to translate the results.
Default translated fields are:
title,summary.If empty,
translated_fields won't be returned.Example:
french
Response
Properties of the case
iduuidUnique identifier of the case.
Example: "5eb7182b-9b55-4f7a-b3e1-49062ee7cef9"categories(string (enum))[]List of categories assigned to the case.
Values: "E", "S", "G"entity_iduuidPermanent ID of the related entity.
Example: "f337e172-528e-4808-b46e-be1ad6db7fbb"dashboard_urluri | nullLink to the case in SESAMm's Dashboard.
Example: "https://dashboards.textreveal.com/case/5eb7182b-9b55-4f7a-b3e1-49062ee7cef9"last_activitydate-timeLast activity detected on the case. Corresponds to the date of the newest document associated to the case.
Example: "2025-11-07T08:35:37.658Z"scoreintegerIntensity score.
Range: [1, 5]start_datedate-timeCase start date. Corresponds to the date of the oldest document associated to the case.
Example: "2025-10-06T04:55:21.713Z"sub_categoriesstring[]List of sub-categories assigned to the case.
Example: ["Climate Change"]summarystring | nullSummary of the case.
Example: "string"titlestringTitle of the case.
Example: "string"ungc_classificationstring | null (enum)Maximum UNGC classification of the events related to the case.
Values: "violator", "watchlist", "low risk"ungc_principles(string (enum))[]List of UNGC principles of the events related to the case.
Values: "Principle 1: Businesses should support and respect the protection of internationally proclaimed human rights.", "Principle 2: Businesses should make sure that they are not complicit in human rights abuses.", "Principle 3: Businesses should uphold the freedom of association and the effective recognition of the right to collective bargaining.", "Principle 4: Businesses should uphold the elimination of all forms of forced and compulsory labour.", "Principle 5: Businesses should uphold the effective abolition of child labour.", "Principle 6: Businesses should uphold the elimination of discrimination in respect of employment and occupation.", "Principle 7: Businesses should support a precautionary approach to environmental challenges.", "Principle 8: Businesses should undertake initiatives to promote greater environmental responsibility.", "Principle 9: Businesses should encourage the development and diffusion of environmentally friendly technologies.", "Principle 10: Businesses should work against corruption in all its forms, including extortion and bribery."translated_titlestring | nullTranslated version of
Example: "string"titlefield. Seetranslatequery parameter.translated_summarystring | nullTranslated version of
Example: "string"summaryfield. Seetranslatequery parameter.
{
"id": "5eb7182b-9b55-4f7a-b3e1-49062ee7cef9",
"categories": [
"E"
],
"entity_id": "f337e172-528e-4808-b46e-be1ad6db7fbb",
"dashboard_url": "https://dashboards.textreveal.com/case/5eb7182b-9b55-4f7a-b3e1-49062ee7cef9",
"last_activity": "2025-11-07T08:35:37.658Z",
"score": 2,
"start_date": "2025-10-06T04:55:21.713Z",
"sub_categories": [
"Climate Change",
"Water Pollution"
],
"summary": "string",
"title": "string",
"related_events_count": 8,
"related_documents_count": 43,
"ungc_classification": "violator",
"ungc_principles": [
"Principle 1: Businesses should support and respect the protection of internationally proclaimed human rights.",
"Principle 2: Businesses should make sure that they are not complicit in human rights abuses."
],
"translated_title": "string",
"translated_summary": "string"
}