For AI agents: visit https://stockpit.readme.io/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
Update an address
| input |
|---|
| Data of the address |
mutation UpdateAddress($id: ID!, $input: AddressInput!) {
UpdateAddress(id: $id, input: $input) {
id
label
}
}
{
"id": 100010,
"input": {
"postal_code": "75011",
"city": "Paris 11"
}
}
{
"data": {
"UpdateAddress": {
"id": 100010,
"label": "Point of sales Paris"
}
}
}
| label |
|---|
| Label of the address |
| country |
|---|
| Country code (UK, FR, ...) |
| address_1 |
|---|
| Line 1 of the address |
| address_2 |
|---|
| Line 2 of the address |
| city |
|---|
| City (New-York, Paris, ...) |