Skip to main content
Creates a new customer without an initial subscription.
For most use cases, consider using provisionCustomer which can create both customer and subscription in one call.

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.