POST api/FindFitter/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
None. |
Body Parameters
Address| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| name | string |
None. |
|
| address1 | string |
None. |
|
| address2 | string |
None. |
|
| address3 | string |
None. |
|
| zip | string |
None. |
|
| city | string |
None. |
|
| state | string |
None. |
|
| countryCode | string |
None. |
|
| lng | decimal number |
None. |
|
| lat | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"name": "sample string 2",
"address1": "sample string 3",
"address2": "sample string 4",
"address3": "sample string 5",
"zip": "sample string 6",
"city": "sample string 7",
"state": "sample string 8",
"countryCode": "sample string 9",
"lng": 1.1,
"lat": 1.1
}
text/html
Sample:
{"ID":1,"name":"sample string 2","address1":"sample string 3","address2":"sample string 4","address3":"sample string 5","zip":"sample string 6","city":"sample string 7","state":"sample string 8","countryCode":"sample string 9","lng":1.1,"lat":1.1}
application/xml, text/xml
Sample:
<Address xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TptLinqToSql"> <ID>1</ID> <address1>sample string 3</address1> <address2>sample string 4</address2> <address3>sample string 5</address3> <city>sample string 7</city> <countryCode>sample string 9</countryCode> <lat>1.1</lat> <lng>1.1</lng> <name>sample string 2</name> <state>sample string 8</state> <zip>sample string 6</zip> </Address>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json, text/html
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />