def show
    @customer = current_account.customers.find_by id: params[:id]
    if @customer
      render json: { customer: @customer }
    else