Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| addressId | 
                         The address identifier.  | 
                    integer | 
                                 Required  | 
                
Body Parameters
None.
Response Information
Resource Description
The address, if it exists.
Pico.Address| Name | Description | Type | Additional information | 
|---|---|---|---|
| city | 
                         Gets or sets the city.  | 
                    string | 
                             None.  | 
                
| state | 
                         Gets or sets the state.  | 
                    string | 
                             None.  | 
                
| street | 
                         Gets or sets the street.  | 
                    string | 
                             None.  | 
                
| unitNumber | 
                         Gets or sets the unit number.  | 
                    string | 
                             None.  | 
                
| zipCode | 
                         Gets or sets the zip code.  | 
                    string | 
                             None.  | 
                
| id | 
                         Gets or sets the address id.  | 
                    integer | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
{
  "city": "sample String 1",
  "state": "sample String 2",
  "street": "sample String 3",
  "unitNumber": "sample String 4",
  "zipCode": "sample String 5",
  "id": "6"
}
        text/html
            Sample:
        
{"city":"sample String 1","state":"sample String 2","street":"sample String 3","unitNumber":"sample String 4","zipCode":"sample String 5","id":"6"}
        application/xml, text/xml
            Sample:
<Address xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <City>sample String 1</City> <State>sample String 2</State> <Street>sample String 3</Street> <UnitNumber>sample String 4</UnitNumber> <ZipCode>sample String 5</ZipCode> <AddressId>6</AddressId> </Address>