Skip to main content
Fetch Case
curl --request GET \
  --url https://sigmaprod.sabipay.com/case-management/case/{id} \
  --header 'apiKey: <api-key>' \
  --header 'apiSecret: <api-key>'
{
  "message": "Case fetched successfully",
  "data": {
    "_id": "6801c4f2a3b7d8e9f1c2d3e4",
    "businessProfile": "63f0a1b2c3d4e5f6a7b8c9d0",
    "module": "transaction-monitoring",
    "record": {
      "id": "64f1a2b3c4d5e6f7a8b9c0d1",
      "type": "transaction",
      "name": "TXN-00123456"
    },
    "title": "High-value transaction requiring review",
    "description": "A transfer of ₦4,500,000 was flagged by the fraud scoring engine with a score of 87. The customer has no prior history of transactions of this size. Requires manual review before release.",
    "priority": "high",
    "status": "in progress",
    "assignedTo": {
      "_id": "64a9f1c2d3e4b5a6c7d8e9f0",
      "firstName": "Amaka",
      "lastName": "Osei"
    },
    "assignedBy": {
      "_id": "63e8b0a1c2d3f4e5a6b7c8d9",
      "firstName": "Tunde",
      "lastName": "Adeyemi"
    },
    "dueDate": "2026-04-25T23:59:59.000Z",
    "tasks": [
      {
        "_id": "6801c4f2a3b7d8e9f1c2d3e5",
        "text": "Review customer transaction history for the last 90 days",
        "status": true
      },
      {
        "_id": "6801c4f2a3b7d8e9f1c2d3e6",
        "text": "Verify source of funds documentation",
        "status": false
      },
      {
        "_id": "6801c4f2a3b7d8e9f1c2d3e7",
        "text": "Check customer against internal watchlist",
        "status": false
      },
      {
        "_id": "6801c4f2a3b7d8e9f1c2d3e8",
        "text": "Record final decision with supporting notes",
        "status": false
      }
    ],
    "comments": [
      {
        "_id": "6801e5b3c4d9f0a1b2c3d4e5",
        "text": "Reviewed last 90 days of transaction history — no comparable transfers. Customer profile shows consistent low-value retail transactions. Flagging for source of funds verification.",
        "user": {
          "_id": "64a9f1c2d3e4b5a6c7d8e9f0",
          "firstName": "Amaka",
          "lastName": "Osei"
        },
        "attachments": [],
        "taggedUsers": [],
        "date": "2026-04-22T11:30:00.000Z"
      }
    ],
    "attachments": [],
    "isEscalated": false,
    "log": [
      {
        "_id": "6801c4f2a3b7d8e9f1c2d3e9",
        "status": "open",
        "message": "Case created",
        "user": {
          "_id": "63e8b0a1c2d3f4e5a6b7c8d9",
          "firstName": "Tunde",
          "lastName": "Adeyemi"
        },
        "date": "2026-04-22T09:15:42.000Z"
      },
      {
        "_id": "6801d0e1f2a3b4c5d6e7f8a9",
        "status": "in progress",
        "message": "Status updated to in progress",
        "user": {
          "_id": "64a9f1c2d3e4b5a6c7d8e9f0",
          "firstName": "Amaka",
          "lastName": "Osei"
        },
        "date": "2026-04-22T10:00:00.000Z"
      }
    ],
    "createdAt": "2026-04-22T09:15:42.000Z",
    "updatedAt": "2026-04-22T11:30:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://sigma-docs.pastel.africa/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint returns the full case record including all comments, task statuses, file attachments, and the complete activity log. Use this to display the case detail view or to audit the full history of an investigation.

Authorizations

apiKey
string
header
required
apiSecret
string
header
required

Path Parameters

id
string
required

The ID of the case to retrieve.

Response

Case returned successfully

message
string
Example:

"Case fetched successfully"

data
object