Skip to main content
Creates a new customer without an initial subscription.
Deprecated: Use provisionCustomer instead, which can create both customer and subscription in a single operation.

Mutation

mutation CreateCustomer($input: CustomerInput!) {
  createOneCustomer(input: $input) {
    customerId
    name
    email
    billingId
    createdAt
  }
}

Parameters

input
CustomerInput
required
Input for creating a customer

Return Type

Returns a Customer object with all customer fields.