Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add form_fields to Customer #156

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Mar 27, 2020

  1. add form_fields to Customer

    Form fields exist on Customer but are missing from the customer resource object.
    
    Schema definition:
    
      $ curl https://developer.bigcommerce.com/api-reference/store-management/customers-v2/BigCommerce_Customers_API.oas2.json | jq '.definitions.Customer.properties.form_fields'
    
      {
        "description": "Array of custom fields. This is a READ-ONLY field; do not set or modify its value in a POST or PUT request.",
        "type": "array",
        "items": {
          "title": "Form Fields",
          "type": "object",
          "properties": {
            "name": {
              "description": "Name of the form field",
              "type": "string",
              "example": "License Id"
            },
            "value": {
              "description": "Value of the form field",
              "type": "string",
              "example": "123BAF"
            }
          }
        }
      }
    millerjs committed Mar 27, 2020
    Configuration menu
    Copy the full SHA
    2836b4d View commit details
    Browse the repository at this point in the history