Skip to main content
Create Corporate 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": "CUST-CORP-001",
  "type": "corporate",
  "channel": "branch",
  "businessName": "Pastel Technologies Ltd",
  "registrationNumber": "RC1234567",
  "taxIdentificationNumber": "19876543-0001",
  "headOfficeAddress": "Plot 7, Wuse Zone 4, Abuja, FCT",
  "incorporationDate": "2018-03-22",
  "countryOfIncorporation": "Nigeria",
  "stateOfIncorporation": "FCT",
  "signatories": [
    {
      "firstName": "Emeka",
      "lastName": "Nwosu",
      "title": "Mr",
      "middleName": "Chidi",
      "dob": "1985-07-10",
      "gender": "male",
      "phone": "+2348023456789",
      "address": "5 Aminu Kano Crescent, Wuse 2, Abuja",
      "bvnNumber": "22334455667",
      "ninNumber": "11223344556",
      "passportNumber": "B98765432",
      "accountNumber": "9876543210",
      "nationality": "Nigerian",
      "occupation": "Chief Executive Officer",
      "politicalAffiliation": false,
      "politicalPosition": false,
      "sourceOfFunds": "business income"
    }
  ],
  "directors": [
    {
      "firstName": "Ngozi",
      "lastName": "Adeyemi",
      "title": "Dr",
      "dob": "1978-11-30",
      "gender": "female",
      "phone": "+2347034567890",
      "address": "22 Marina Road, Lagos Island, Lagos",
      "bvnNumber": "33445566778",
      "nationality": "Nigerian",
      "occupation": "Non-Executive Director",
      "politicalAffiliation": true,
      "politicalPosition": false,
      "politicalAffiliationRelationship": "Spouse of former senator"
    }
  ],
  "groupName": "Corporate Clients 2024"
}
'
{
  "message": "CDD customer created successfully",
  "data": {
    "_id": "67f50d48c2a7d1f2b6e99390",
    "uniqueId": "CUST-CORP-001",
    "type": "corporate",
    "businessName": "Pastel Technologies Ltd",
    "channel": "branch",
    "status": "active",
    "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
string
required
Example:

"corporate"

businessName
string
required
channel
string
registrationNumber
string
taxIdentificationNumber
string
headOfficeAddress
string
incorporationDate
string
countryOfIncorporation
string
stateOfIncorporation
string
signatories
object[]
directors
object[]
groupId
string
groupName
string

Response

Customer created

message
string
data
object