PUT
/
organizations
/
{organization_id}
/
addresses
/
{address_id}
Update Addresss
curl --request PUT \
  --url https://api.example.com/organizations/{organization_id}/addresses/{address_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "<string>",
  "content": {
    "countryCode": "DE",
    "addressType": "HAUSANSCHRIFT"
  }
}
'
{
  "id": "<string>",
  "address": "<string>",
  "components": {
    "formatted_address": "<string>",
    "street_number": "<string>",
    "road": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>",
    "postal_code": "<string>",
    "postal_code_suffix": "<string>",
    "latitude": 123,
    "longitude": 123
  },
  "content": {
    "normalizedAddress": "<string>",
    "countryCode": "DE",
    "addressType": "HAUSANSCHRIFT"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

address_id
required
organization_id
required

Body

application/json
address
string
required
content
GermanyAddressContentRequest · object
required

Response

Successful Response

id
string
required
address
string
required
components
AddressComponents · object
required
content
GermanyAddressContentResponse · object
required