For the complete documentation index, see llms.txt. This page is also available as Markdown.

Retrieve an Activity using ID

This endpoint allows you to retrieve a case

GET {{baseurl}}/v2/api/activities/:activityId

Headers

Name
Type
Description

token*

String

API secret token

Parameter

Field
Type
Description

activityId*

String

Unique Id of the activity

{
    "success": true,
    "statusCode": 200,
    "message": "Activity retrieved successfully!",
    "data": {
        "requestedBy": {
            "id": "63d7ad866bf278e0a3fd7f09",
            "firstName": "Paulina",
            "lastName": "John",
            "middleName": null
        },
        "_id": "6904dfadf32cb9ff48dc7551",
        "entityId": "6904dfa8accfde8c7ce074c8",
        "activity": "AML Check",
        "type": "pep",
        "incorporationName": null,
        "firstName": null,
        "lastName": null,
        "entityType": "individual",
        "reportId": "6904dfa9ff3e09f79eecc9a5",
        "businessId": "61d880f1e8e15aaf24558f1a",
        "status": "cleared",
        "createdAt": "2025-10-31T16:11:25.088Z",
        "lastModifiedAt": "2025-10-31T16:11:25.088Z",
        "_createdAt": "2025-10-31T17:11:2525+01:00",
        "_lastModifiedAt": "2025-10-31T17:11:2525+01:00",
        "id": "act_6904dfadf32cb9ff48dc7551",
        "report": []
    },
    "links": []
}

Last updated

Was this helpful?