| POST | /api/StationReservation |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| StationId | query | integer | Yes | The ID of the station being reserved |
| Acct | query | integer | No | The Customer Acct assosicated with the reservation. Either this or CustomerInfo is required. |
| CustomerInfo | query | object | No | |
| CcInfo | query | object | No | |
| Start | query | string | Yes | The start date/time of the reservation. |
| Length | query | integer | Yes | The length (in minutes) of the reservation. |
| Guests | query | integer | No | Number of guests (in addition to the customer) included in this reservation. Defaults to 0. |
| Notes | query | string | No | Notes |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Token | Header | string | No | The Login Token return by the Security API. Required for secured calls. |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ApiKey | Header | string | Yes | This is your AIM API Key provided by Tri-Tech |
| OAuthToken | Header | string | Yes | The OAuthToken token return by AeServices30 |
| DeviceId | Header | string | No | The Device ID of the Mobile Device. Not used for non-mobile devices. |
| AppId | Header | string | Yes | An identifier for your integration |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| WebId | body | integer | No | The WebId of the customer. Optional. |
| Name | body | string | Yes | Name of the customer. |
| Addr1 | body | string | No | Address line 1 of the customer |
| Addr2 | body | string | No | Address line 2 of the customer |
| City | body | string | No | City of the customer |
| St | body | string | No | State/Province of the customer |
| Zip | body | string | No | Zip code of the customer |
| Country | body | string | No | Country of the customer |
| Phone | body | string | No | Phone number of the customer |
| body | string | Yes | Email address of the customer. Required. |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| TokenStr | body | string | Yes | Token returned from processor |
| CardType | body | string | Yes | Card Type (VISA, MCARD, AMEX, DSCVR) |
| LastFour | body | string | Yes | Last four of the card |
| Expiration | body | string | No | Expiration Date of the Card. (MM/YY) |
| ReasonOnFile | body | string | No | Reason the card is on file. |
| TokenPk | body | integer | No | ID of the existing Token Record in AIM, if applicable |
| Primary | body | boolean | No | Is this the customer's primary card? Defaults to false. |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Status | body | BaseResponseResult | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| StatusCode | body | string | No | |
| Login | body | string | No | |
| ErrorCode | body | string | No | |
| ErrorDisplayText | body | string | No | |
| ErrorMessage | body | string | No | |
| DomainName | body | string | No | |
| IpAddress | body | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/StationReservation HTTP/1.1
Host: active-ewebservice.biz
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<StationReservationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIM.WebService">
<ApiKey>String</ApiKey>
<AppId>String</AppId>
<DeviceId>String</DeviceId>
<OAuthToken>String</OAuthToken>
<Token>String</Token>
<Acct>0</Acct>
<CcInfo>
<CardType>String</CardType>
<Expiration>String</Expiration>
<LastFour>String</LastFour>
<Primary>false</Primary>
<ReasonOnFile>String</ReasonOnFile>
<TokenPk>0</TokenPk>
<TokenStr>String</TokenStr>
</CcInfo>
<CustomerInfo>
<Addr1>String</Addr1>
<Addr2>String</Addr2>
<City>String</City>
<Country>String</Country>
<Email>String</Email>
<Name>String</Name>
<Phone>String</Phone>
<St>String</St>
<WebId>0</WebId>
<Zip>String</Zip>
</CustomerInfo>
<Guests>0</Guests>
<Length>0</Length>
<Notes>String</Notes>
<Start>0001-01-01T00:00:00</Start>
<StationId>0</StationId>
</StationReservationRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<StationReservationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIM.WebService">
<Status>
<DomainName>String</DomainName>
<ErrorCode>String</ErrorCode>
<ErrorDisplayText>String</ErrorDisplayText>
<ErrorMessage>String</ErrorMessage>
<IpAddress>String</IpAddress>
<Login>String</Login>
<StatusCode>String</StatusCode>
</Status>
</StationReservationResponse>