Update Address
PATCH https://{{host}}/v3/addresses/:id
Update the settings of a single Address owned by your account.
Request Body Scheme
{
data (object, required)
{
id (string, required) Unique ID number allocated to this Address.
type (string, required): addresses
attributes (object, required)
{
city_name (string, optional)
City name of the address.postal_code (string, optional)
Postal code of the address.address (string, optional)
Full address.description (string, optional)
The description of the address.
}
}
}
Request Body Example
Simple Resource Patch
{
"data": {
"id": "46e129f1-deaa-44db-8915-2646de4d4c70",
"type": "addresses",
"attributes": {
"city_name": "string",
"postal_code": "string",
"address": "string",
"description": "string"
}
}
}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string | ||
Content-Type | string | ||
Api-Key | string |
RESPONSES
status: OK
{"data":{"id":"49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0","type":"addresses","attributes":{"city_name":"string","postal_code":"string","address":"string","description":"string","created_at":"2020-09-16T10:23:07.846Z","verified":false},"relationships":{"identity":{"links":{"self":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/identity","related":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/identity"}},"country":{"links":{"self":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/country","related":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/country"}},"proofs":{"links":{"self":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/proofs","related":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/proofs"}},"area":{"links":{"self":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/area","related":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/area"}},"city":{"links":{"self":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/city","related":"https://api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/city"}}}},"meta":{"api_version":"2022-05-10"}}