Customers
Create a Customer
Argument
Type
Required
Description
email
String!
Yes
Customer’s email (must be unique per account).
firstName
String!
Yes
First name.
lastName
String!
Yes
Last name.
country
ID!
Yes
The mutation returns the new customer’s global id
, which you’ll reference in future calls (e.g., adding a payment method).
List Customers
merchantCustomers
is a Relay-style connection. To fetch the next page, pass after: <endCursor>
:
Last updated