Fetch Cases
curl --request GET \
--url https://sigmaprod.sabipay.com/api/v1/case-management/listing \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>'import requests
url = "https://sigmaprod.sabipay.com/api/v1/case-management/listing"
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apiKey: '<api-key>', apiSecret: '<api-key>'}};
fetch('https://sigmaprod.sabipay.com/api/v1/case-management/listing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sigmaprod.sabipay.com/api/v1/case-management/listing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiKey: <api-key>",
"apiSecret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sigmaprod.sabipay.com/api/v1/case-management/listing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sigmaprod.sabipay.com/api/v1/case-management/listing")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmaprod.sabipay.com/api/v1/case-management/listing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "Cases fetched successfully",
"data": {
"cases": [
{
"_id": "6801c4f2a3b7d8e9f1c2d3e4",
"module": "transaction-monitoring",
"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.",
"priority": "high",
"status": "open",
"assignedTo": {
"_id": "64a9f1c2d3e4b5a6c7d8e9f0",
"firstName": "Amaka",
"lastName": "Osei"
},
"assignedBy": {
"_id": "63e8b0a1c2d3f4e5a6b7c8d9",
"firstName": "Tunde",
"lastName": "Adeyemi"
},
"dueDate": "2026-04-25T23:59:59.000Z",
"isEscalated": false,
"createdAt": "2026-04-22T09:15:42.000Z",
"updatedAt": "2026-04-22T09:15:42.000Z"
},
{
"_id": "6801d5a3b4c8e9f0a1b2c3d5",
"module": "aml",
"title": "PEP match — senior government official",
"description": "Customer returned a high-confidence PEP match during onboarding screening. Requires enhanced due diligence before account activation.",
"priority": "high",
"status": "in progress",
"assignedTo": {
"_id": "64a9f1c2d3e4b5a6c7d8e9f0",
"firstName": "Amaka",
"lastName": "Osei"
},
"assignedBy": {
"_id": "63e8b0a1c2d3f4e5a6b7c8d9",
"firstName": "Tunde",
"lastName": "Adeyemi"
},
"dueDate": "2026-04-24T17:00:00.000Z",
"isEscalated": true,
"createdAt": "2026-04-21T14:30:00.000Z",
"updatedAt": "2026-04-22T08:45:00.000Z"
}
],
"total": 2,
"page": 1,
"limit": 20,
"analytics": {
"openCases": 1,
"overdue": 0,
"resolved": 3,
"closed": 1,
"averageCompletionTime": [
{
"formatted": "1d 4h"
}
],
"resolvedTypes": [
{
"_id": "high",
"count": 2
},
{
"_id": "medium",
"count": 1
}
]
}
}
}{
"message": "Invalid API credentials"
}Case Management
Fetch Cases
GET api/v1/case-management/listing
Fetch Cases
curl --request GET \
--url https://sigmaprod.sabipay.com/api/v1/case-management/listing \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>'import requests
url = "https://sigmaprod.sabipay.com/api/v1/case-management/listing"
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apiKey: '<api-key>', apiSecret: '<api-key>'}};
fetch('https://sigmaprod.sabipay.com/api/v1/case-management/listing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sigmaprod.sabipay.com/api/v1/case-management/listing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiKey: <api-key>",
"apiSecret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sigmaprod.sabipay.com/api/v1/case-management/listing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sigmaprod.sabipay.com/api/v1/case-management/listing")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmaprod.sabipay.com/api/v1/case-management/listing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "Cases fetched successfully",
"data": {
"cases": [
{
"_id": "6801c4f2a3b7d8e9f1c2d3e4",
"module": "transaction-monitoring",
"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.",
"priority": "high",
"status": "open",
"assignedTo": {
"_id": "64a9f1c2d3e4b5a6c7d8e9f0",
"firstName": "Amaka",
"lastName": "Osei"
},
"assignedBy": {
"_id": "63e8b0a1c2d3f4e5a6b7c8d9",
"firstName": "Tunde",
"lastName": "Adeyemi"
},
"dueDate": "2026-04-25T23:59:59.000Z",
"isEscalated": false,
"createdAt": "2026-04-22T09:15:42.000Z",
"updatedAt": "2026-04-22T09:15:42.000Z"
},
{
"_id": "6801d5a3b4c8e9f0a1b2c3d5",
"module": "aml",
"title": "PEP match — senior government official",
"description": "Customer returned a high-confidence PEP match during onboarding screening. Requires enhanced due diligence before account activation.",
"priority": "high",
"status": "in progress",
"assignedTo": {
"_id": "64a9f1c2d3e4b5a6c7d8e9f0",
"firstName": "Amaka",
"lastName": "Osei"
},
"assignedBy": {
"_id": "63e8b0a1c2d3f4e5a6b7c8d9",
"firstName": "Tunde",
"lastName": "Adeyemi"
},
"dueDate": "2026-04-24T17:00:00.000Z",
"isEscalated": true,
"createdAt": "2026-04-21T14:30:00.000Z",
"updatedAt": "2026-04-22T08:45:00.000Z"
}
],
"total": 2,
"page": 1,
"limit": 20,
"analytics": {
"openCases": 1,
"overdue": 0,
"resolved": 3,
"closed": 1,
"averageCompletionTime": [
{
"formatted": "1d 4h"
}
],
"resolvedTypes": [
{
"_id": "high",
"count": 2
},
{
"_id": "medium",
"count": 1
}
]
}
}
}{
"message": "Invalid API credentials"
}Use
view=me to retrieve only cases assigned to the authenticated user, or view=all to retrieve all cases for your business. Pass analytics=true to include a summary of open, overdue, resolved, and closed counts alongside the results.Query Parameters
me returns only cases assigned to the authenticated user. all returns all cases for the business.
Available options:
me, all Page number for pagination.
Number of cases to return per page.
Filter cases by status.
Available options:
open, in progress, resolved, closed, escalated Filter cases by priority.
Available options:
low, medium, high Sort order for the results.
Available options:
due date, priority, newest Free-text search across case titles and descriptions.
When true, includes a summary of case counts and average completion time in the response.
Available options:
true, false Filter cases linked to a specific Sigma record ID.
⌘I