cURL
curl --request POST \
--url https://sigmaaml.sabipay.com/api/v1/aml/pep \
--header 'Content-Type: application/json' \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>' \
--data '
{
"name": "Kwame Asare Mensah",
"threshold": 85,
"country": "GH"
}
'import requests
url = "https://sigmaaml.sabipay.com/api/v1/aml/pep"
payload = {
"name": "Kwame Asare Mensah",
"threshold": 85,
"country": "GH"
}
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
apiKey: '<api-key>',
apiSecret: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({name: 'Kwame Asare Mensah', threshold: 85, country: 'GH'})
};
fetch('https://sigmaaml.sabipay.com/api/v1/aml/pep', 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://sigmaaml.sabipay.com/api/v1/aml/pep",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Kwame Asare Mensah',
'threshold' => 85,
'country' => 'GH'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sigmaaml.sabipay.com/api/v1/aml/pep"
payload := strings.NewReader("{\n \"name\": \"Kwame Asare Mensah\",\n \"threshold\": 85,\n \"country\": \"GH\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sigmaaml.sabipay.com/api/v1/aml/pep")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Kwame Asare Mensah\",\n \"threshold\": 85,\n \"country\": \"GH\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmaaml.sabipay.com/api/v1/aml/pep")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Kwame Asare Mensah\",\n \"threshold\": 85,\n \"country\": \"GH\"\n}"
response = http.request(request)
puts response.read_body{
"message": "Request created successfully. Result will be sent to your webhook",
"data": {
"id": "67f95ea7c2a7d1f2b6ea10b4",
"query": "Kwame Asare Mensah",
"businessProfile": "67f4f9b5c2a7d1f2b6e99122",
"status": "pending",
"createdAt": "2026-04-03T09:20:00.000Z",
"updatedAt": "2026-04-03T09:20:00.000Z"
}
}{
"error": 400,
"message": "Invalid request payload: name is required"
}Anti Monitoring Laundering
Check PEP (Webhook)
POST api/v1/aml/pep
cURL
curl --request POST \
--url https://sigmaaml.sabipay.com/api/v1/aml/pep \
--header 'Content-Type: application/json' \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>' \
--data '
{
"name": "Kwame Asare Mensah",
"threshold": 85,
"country": "GH"
}
'import requests
url = "https://sigmaaml.sabipay.com/api/v1/aml/pep"
payload = {
"name": "Kwame Asare Mensah",
"threshold": 85,
"country": "GH"
}
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
apiKey: '<api-key>',
apiSecret: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({name: 'Kwame Asare Mensah', threshold: 85, country: 'GH'})
};
fetch('https://sigmaaml.sabipay.com/api/v1/aml/pep', 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://sigmaaml.sabipay.com/api/v1/aml/pep",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Kwame Asare Mensah',
'threshold' => 85,
'country' => 'GH'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sigmaaml.sabipay.com/api/v1/aml/pep"
payload := strings.NewReader("{\n \"name\": \"Kwame Asare Mensah\",\n \"threshold\": 85,\n \"country\": \"GH\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sigmaaml.sabipay.com/api/v1/aml/pep")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Kwame Asare Mensah\",\n \"threshold\": 85,\n \"country\": \"GH\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmaaml.sabipay.com/api/v1/aml/pep")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Kwame Asare Mensah\",\n \"threshold\": 85,\n \"country\": \"GH\"\n}"
response = http.request(request)
puts response.read_body{
"message": "Request created successfully. Result will be sent to your webhook",
"data": {
"id": "67f95ea7c2a7d1f2b6ea10b4",
"query": "Kwame Asare Mensah",
"businessProfile": "67f4f9b5c2a7d1f2b6e99122",
"status": "pending",
"createdAt": "2026-04-03T09:20:00.000Z",
"updatedAt": "2026-04-03T09:20:00.000Z"
}
}{
"error": 400,
"message": "Invalid request payload: name is required"
}Body
application/json
Pep request payload
⌘I