Vue Storefront is now Alokai! Learn More
RegisterCustomer

RegisterCustomer

Implements RegisterCustomer Unified Method.

Source

import { defineApi } from "@vsf-enterprise/unified-api-bigcommerce";
import { getNormalizers } from "@vsf-enterprise/unified-api-bigcommerce/udl";

export const registerCustomer = defineApi.registerCustomer(async (context, args) => {
  const { email, firstName, lastName, password } = args;
  const { normalizeCustomer } = getNormalizers(context);

  try {
    const user = await context.api.createCustomer({
      first_name: firstName,
      last_name: lastName,
      email: email,
      password: password,
      accepts_product_review_abandoned_cart_emails: false,
      custom_fields: [],
    });

    return {
      customer: normalizeCustomer(user),
    };
  } catch {
    throw { statusCode: 400, message: "Could not register customer" };
  }
});