POST api/Address
Request Information
URI Parameters
None.
Body Parameters
Address| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Line1 | string |
None. |
|
| Line2 | string |
None. |
|
| Line3 | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| ZipCode | string |
None. |
|
| AuditId | integer |
None. |
|
| StoreId | integer |
None. |
|
| VendorId | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| LastModifiedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Line1": "sample string 2",
"Line2": "sample string 3",
"Line3": "sample string 4",
"City": "sample string 5",
"State": "sample string 6",
"ZipCode": "sample string 7",
"AuditId": 8,
"StoreId": 9,
"VendorId": 10,
"CreatedBy": 11,
"LastModifiedBy": 1
}
application/xml, text/xml
Sample:
<Address xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IKimWebService.Domain"> <CreatedBy>11</CreatedBy> <LastModifiedBy>1</LastModifiedBy> <AuditId>8</AuditId> <City>sample string 5</City> <Id>1</Id> <Line1>sample string 2</Line1> <Line2>sample string 3</Line2> <Line3>sample string 4</Line3> <State>sample string 6</State> <StoreId>9</StoreId> <VendorId>10</VendorId> <ZipCode>sample string 7</ZipCode> </Address>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |