Skip to main content
Create customer
curl --request POST \
  --url https://sigmacdd.sabipay.com/cdd/customers \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --header 'apiSecret: <api-key>' \
  --data '
{
  "uniqueId": "<string>",
  "type": "individual",
  "firstName": "<string>",
  "lastName": "<string>",
  "businessName": "<string>",
  "groupId": "<string>",
  "groupName": "<string>"
}
'
{
  "message": "CDD customer created successfully",
  "data": {
    "_id": "67f50d48c2a7d1f2b6e99389",
    "uniqueId": "CUS-10001",
    "type": "individual",
    "firstName": "Aisha",
    "lastName": "Bello",
    "channel": "WEB_PORTAL",
    "status": "active",
    "kycLevel": "Tier 2",
    "createdAt": "2026-03-25T10:25: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 is for creating corporate customers. For individual customers, see Create Individual Customer.

Authorizations

apiKey
string
header
required
apiSecret
string
header
required

Body

application/json
uniqueId
string
required
type
enum<string>
required
Available options:
individual,
corporate
firstName
string
lastName
string
businessName
string
groupId
string
groupName
string

Response

201 - application/json

Customer created

message
string
data
object