FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: update-customer-response.md
# Update Customer Response Defines the fields that are included in the response body of a request to the [UpdateCustomer](../../doc/apis/customers.md#update-customer) or [BulkUpdateCustomers](../../doc/apis/customers.md#bulk-update-customers) endpoint. Either `errors` or `customer` is present in a given response (never both). ## Structure `UpdateCustomerResponse` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `errors` | [`?(Error[])`](../../doc/models/error.md) | Optional | Any errors that occurred during the request. | getErrors(): ?array | setErrors(?array errors): void | | `customer` | [`?Customer`](../../doc/models/customer.md) | Optional | Represents a Square customer profile in the Customer Directory of a Square seller. | getCustomer(): ?Customer | setCustomer(?Customer customer): void | ## Example (as JSON) ```json { "customer": { "address": { "address_line_1": "500 Electric Ave", "address_line_2": "Suite 600", "administrative_district_level_1": "NY", "country": "US", "locality": "New York", "postal_code": "10003" }, "created_at": "2016-03-23T20:21:54.859Z", "creation_source": "THIRD_PARTY", "email_address": "New.Amelia.Earhart@example.com", "family_name": "Earhart", "given_name": "Amelia", "id": "JDKYHBWT1D4F8MFH63DBMEN8Y4", "note": "updated customer note", "preferences": { "email_unsubscribed": false }, "reference_id": "YOUR_REFERENCE_ID", "updated_at": "2016-05-15T20:21:55Z", "version": 3, "cards": [ { "id": "id8", "card_brand": "DISCOVER", "last_4": "last_40", "exp_month": 152, "exp_year": 144 } ] }, "errors": [ { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" }, { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" } ] } ```
Save
Back