Update Specific Addresses

Resource URI

This route will update the specific fields of an Address record specified by the UUID

PATCH /addresses/{address_uuid}

Input Parameters

@param address_uuid {uuid} UUID of an Address.

Sample Request

html

http://api.4over.com/addresses/2e15b146-d6e1-4602-9c58-ca85a40bd362 

Sample Request Body

JSON

{
  "street": "0123 street"
}

Sample Response Body

JSON

{
    "address_uuid": "2e15b146-d6e1-4602-9c58-ca85a40bd362",
    "street": "0123 street",
    "street2": "Suit N",
    "city": "Glendale",
    "state": "CA",
    "postal_code": "12347",
    "country": "US"
}