Creates a new customer

Creates a new customer.

You can also create customers in the Merchant Dashboard.

Body·
required
application/json

Request parameters for creating a new customer.

  • Type: object ·

    This object represents a customer of your business. Use it to create recurring charges, save payment and contact information, and track payments that belong to the same customer.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/v1/customers
curl https://api.paypercut.io/v1/customers \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "created": "",
  "livemode": true,
  "email": null,
  "name": null,
  "phone": null,
  "preferred_locales": [
    ""
  ],
  "address": {
    "city": null,
    "country": null,
    "line1": null,
    "line2": null,
    "postal_code": null,
    "state": null
  },
  "invoice_settings": {
    "default_payment_method": "01K688H80Z3199KETHDJ4ZAFPS"
  }
}'
{
  "created": "2026-07-08T08:02:27.743Z",
  "livemode": true,
  "email": null,
  "name": null,
  "phone": null,
  "preferred_locales": [
    "string"
  ],
  "address": {
    "city": null,
    "country": null,
    "line1": null,
    "line2": null,
    "postal_code": null,
    "state": null
  },
  "invoice_settings": {
    "default_payment_method": "01K688H80Z3199KETHDJ4ZAFPS"
  },
  "id": "string"
}