# Lookup Address Types v2.0Beta

The Lookup Address Types endpoint retrieves valid address types values that may be used for Add Address and Update Address requests.

GET /v2.0/lookups/customer/address/types

# Request

The request will get a list of address types.

# Response

200
OK
Returns a Lookup resource wrapped in an ApiListResponse envelope.

# Response Body

The endpoint returns our ApiListResponse envelope. The data property of the response will contain a Lookup resource.

# Sample

{
    "message": "The operation succeeded!",
    "notifications": [],
    "numberOfRecords": 1,
    "data": [
        {
            "value": "Delivery",
            "sortOrder": 1
        }
    ]
}

# Errors

The standard error responses apply.

401
Unauthorized
When authentication fails.
403
Forbidden
When authorisation fails.