POST api/BasePoint
Request Information
URI Parameters
None.
Body Parameters
BasePointRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ZIP | string |
None. |
|
| WorkDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ZIP": "sample string 1",
"WorkDate": "2025-12-15T18:23:53.3067752-05:00"
}
application/xml, text/xml
Sample:
<BasePointRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models"> <WorkDate>2025-12-15T18:23:53.3067752-05:00</WorkDate> <ZIP>sample string 1</ZIP> </BasePointRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BasePoint| Name | Description | Type | Additional information |
|---|---|---|---|
| BaseCity | string |
None. |
|
| Country | string |
None. |
|
| County | string |
None. |
|
| Effective | date |
None. |
|
| InclZips | string |
None. |
|
| Mileages | string |
None. |
|
| ServiceArea | integer |
None. |
|
| State | string |
None. |
|
| WhatCol | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"BaseCity": "sample string 1",
"Country": "sample string 2",
"County": "sample string 3",
"Effective": "2025-12-15T18:23:53.3224017-05:00",
"InclZips": "sample string 5",
"Mileages": "sample string 6",
"ServiceArea": 7,
"State": "sample string 8",
"WhatCol": 9
}
application/xml, text/xml
Sample:
<BasePoint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models"> <BaseCity>sample string 1</BaseCity> <Country>sample string 2</Country> <County>sample string 3</County> <Effective>2025-12-15T18:23:53.3224017-05:00</Effective> <InclZips>sample string 5</InclZips> <Mileages>sample string 6</Mileages> <ServiceArea>7</ServiceArea> <State>sample string 8</State> <WhatCol>9</WhatCol> </BasePoint>