SysOS Help Center
Customers

Create a customer

POST/v1/customers

Create a new customer record.

Request

curl --request POST \
  --url https://api.sysos.app/v1/customers \
  --header "Authorization: Bearer ACCESS_TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "name": "Initech",
    "email": "billing@initech.com",
    "country": "US"
  }'

Response 201 Created

{
  "id": "cus_77c1e0aa",
  "name": "Initech",
  "email": "billing@initech.com",
  "country": "US",
  "created_at": "2026-03-01T18:25:43Z"
}