Commit 2836b4d
committed
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"
}
}
}
}1 parent 0aa8f0f commit 2836b4d
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| |||
0 commit comments