Retrieve a customer

You can retrieve the customer object linked to this API key.

Result

An customer object.
type Query {
    customer: Customer!
}

EXAMPLE

{
    customer {
        name
        taxIdType
        trialImages
        address {country}
        currency
    }
}

RESULT

{
  "data": {
    "customer": {
      "name": "Virtucon Industries",
      "taxIdType": "eu_vat",
      "trialImages": 3,
      "address": {"country": "BE"},
      "currency": "EUR"
    }
  }
}