Skip to main content
PUT
/
v3
/
profiles
/
{profile}
/
addresses
/
{address}
Edit Profile Address
curl --request PUT \
  --url http://localhost/api/v3/profiles/{profile}/addresses/{address} \
  --header 'Content-Type: application/json' \
  --data '
{
  "address_line_1": "<string>",
  "address_line_2": "<string>",
  "address_line_3": "<string>",
  "company": "<string>",
  "city": "<string>",
  "postcode": "<string>",
  "state": "<string>",
  "country": "<string>",
  "notes": "<string>",
  "is_default": true,
  "external_id": "<string>",
  "meta": [
    "<string>"
  ],
  "name": "<string>",
  "type": "home",
  "phone": "<string>",
  "iso": "<string>",
  "iso_state": "<string>"
}
'
{
  "data": {
    "id": 123,
    "address_line_1": "<string>",
    "address_line_2": "<string>",
    "address_line_3": "<string>",
    "company": "<string>",
    "latitude": 123,
    "longitude": 123,
    "city": "<string>",
    "postcode": "<string>",
    "state": "<string>",
    "country": "<string>",
    "notes": "<string>",
    "external_id": "<string>",
    "is_default": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "meta": [
      "<unknown>"
    ],
    "name": "<string>",
    "type": "<string>",
    "phone": "<string>",
    "iso": "<string>",
    "iso_state": "<string>",
    "profile_id": "<string>",
    "custom_fields": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

profile
string<uuid>
required

The profile ID

address
integer
required

The address ID

Body

application/json
address_line_1
string
address_line_2
string | null
address_line_3
string | null
company
string | null
city
string
postcode
string
state
string
country
string
notes
string | null
is_default
boolean | null
external_id
string | null
meta
string[] | null
name
string | null
type
enum<string> | null
Available options:
home,
business,
billing,
holiday,
hotel,
recipient,
other
phone
string | null
iso
string | null
Required string length: 2
iso_state
string | null
Required string length: 1 - 3

Response

Address

data
Address · object
required