EntitiesAddressMutationsCopy PageSee the Queries page for a presentation of this resource. UpdateAddress Update an address Parameters id ID Id of the address input AddressInput Data of the address Example GraphQLmutation UpdateAddress($id: ID!, $input: AddressInput!) { UpdateAddress(id: $id, input: $input) { id label } } Variables (JSON){ "id": 100010, "input": { "postal_code": "75011", "city": "Paris 11" } } Returned data JSON{ "data": { "UpdateAddress": { "id": 100010, "label": "Point of sales Paris" } } } AddressInput data type id ID Unique identifier of the address label String Label of the address country String Country code (UK, FR, ...) address_1 String Line 1 of the address address_2 String Line 2 of the address postal_code String Postal code city String City (New-York, Paris, ...) state String State phone String Phone number dependent_locality String Dependent locality of the addressUpdated 2 days ago QueriesAttributeDid this page help you?YesNo