AIM Web Services

<back to all web services

GetTeeSlotsRequest

GetTeeSlots
Requires active-e Tee-Sheet Service

The following routes are available for this service:
POST, GET/api/GetTeeSlots
namespace AIM

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<DataContract>]
    [<AllowNullLiteral>]
    type BaseResponseResult() = 
        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="StatusCode", ParameterType="body")>]
        member val StatusCode:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="Login", ParameterType="body")>]
        member val Login:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="ErrorCode", ParameterType="body")>]
        member val ErrorCode:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="ErrorDisplayText", ParameterType="body")>]
        member val ErrorDisplayText:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="ErrorMessage", ParameterType="body")>]
        member val ErrorMessage:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="DomainName", ParameterType="body")>]
        member val DomainName:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="IPAddress", ParameterType="body")>]
        member val IpAddress:String = null with get,set

    [<DataContract>]
    [<AllowNullLiteral>]
    type BaseResponse() = 
        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body")>]
        member val Status:BaseResponseResult = null with get,set

    [<DataContract>]
    [<AllowNullLiteral>]
    type TeeSlotGeneric() = 
        [<DataMember>]
        member val Id:Int64 = new Int64() with get,set

        [<DataMember>]
        member val DateTime:DateTime = new DateTime() with get,set

        [<DataMember>]
        member val Cost:Decimal = new Decimal() with get,set

        [<DataMember>]
        member val Cost2:Decimal = new Decimal() with get,set

        [<DataMember>]
        member val Cost3:Decimal = new Decimal() with get,set

        [<DataMember>]
        member val SlotsOpen:Int32 = new Int32() with get,set

        [<DataMember>]
        member val MinSlots:Int32 = new Int32() with get,set

        [<DataMember>]
        member val Course:String = null with get,set

        [<DataMember>]
        member val CourseTopic:String = null with get,set

        [<DataMember>]
        member val Location:String = null with get,set

        [<DataMember>]
        member val Note:String = null with get,set

        [<DataMember>]
        member val Has18Holes:Boolean = new Boolean() with get,set

        [<DataMember>]
        member val WebId:String = null with get,set

        [<DataMember>]
        member val StartingOnBack9:Boolean = new Boolean() with get,set

    [<DataContract>]
    [<AllowNullLiteral>]
    type GetTeeSlotsResponse() = 
        inherit BaseResponse()
        [<DataMember>]
        member val TeeSlots:ResizeArray<TeeSlotGeneric> = new ResizeArray<TeeSlotGeneric>() with get,set

    [<DataContract>]
    [<AllowNullLiteral>]
    type BaseRequest() = 
        ///<summary>
        ///This is your AIM API Key provided by Tri-Tech
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="header")>]
        member val ApiKey:String = null with get,set

        [<DataMember>]
        [<ApiMember(DataType="string", Name="OAuthToken", ParameterType="header")>]
        member val OAuthToken:String = null with get,set

    [<DataContract>]
    [<AllowNullLiteral>]
    type BaseSecureRequest() = 
        inherit BaseRequest()
        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="Token", ParameterType="Header")>]
        member val Token:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", Name="DeviceId", ParameterType="Header")>]
        member val DeviceId:String = null with get,set

        ///<summary>
        ///
        ///</summary>
        [<DataMember>]
        [<ApiMember(DataType="string", Description="", IsRequired=true, Name="AppId", ParameterType="Header")>]
        member val AppId:String = null with get,set

    ///<summary>
    ///GetTeeSlotsRequires active-e Tee-Sheet Service
    ///</summary>
    [<DataContract>]
    [<AllowNullLiteral>]
    type GetTeeSlotsRequest() = 
        inherit BaseSecureRequest()
        [<DataMember>]
        member val DateFrom:DateTime = new DateTime() with get,set

        [<DataMember>]
        member val DateTo:DateTime = new DateTime() with get,set

        [<DataMember>]
        member val TimeFrom:Nullable<DateTime> = new Nullable<DateTime>() with get,set

        [<DataMember>]
        member val TimeTo:Nullable<DateTime> = new Nullable<DateTime>() with get,set

        [<DataMember>]
        member val Course:String = null with get,set

        [<DataMember>]
        member val Location:String = null with get,set

        [<DataMember>]
        member val WebId:String = null with get,set

        [<DataMember>]
        member val SlotsRequired:Nullable<Int64> = new Nullable<Int64>() with get,set

        [<DataMember>]
        member val ShowOpenSlots:Nullable<Boolean> = new Nullable<Boolean>() with get,set

        [<DataMember>]
        member val ShowReservedSlots:Nullable<Boolean> = new Nullable<Boolean>() with get,set

        [<DataMember>]
        member val Show9HoleSlots:Nullable<Boolean> = new Nullable<Boolean>() with get,set

        [<DataMember>]
        member val Show18HoleSlots:Nullable<Boolean> = new Nullable<Boolean>() with get,set

        [<DataMember>]
        member val ShowFront9:Nullable<Boolean> = new Nullable<Boolean>() with get,set

        [<DataMember>]
        member val ShowBack9:Nullable<Boolean> = new Nullable<Boolean>() with get,set

F# GetTeeSlotsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /api/GetTeeSlots HTTP/1.1 
Host: active-ewebservice.biz 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetTeeSlotsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIM.WebService">
  <ApiKey>String</ApiKey>
  <OAuthToken>String</OAuthToken>
  <AppId>String</AppId>
  <DeviceId>String</DeviceId>
  <Token>String</Token>
  <Course>String</Course>
  <DateFrom>0001-01-01T00:00:00</DateFrom>
  <DateTo>0001-01-01T00:00:00</DateTo>
  <Location>String</Location>
  <Show18HoleSlots>false</Show18HoleSlots>
  <Show9HoleSlots>false</Show9HoleSlots>
  <ShowBack9>false</ShowBack9>
  <ShowFront9>false</ShowFront9>
  <ShowOpenSlots>false</ShowOpenSlots>
  <ShowReservedSlots>false</ShowReservedSlots>
  <SlotsRequired>0</SlotsRequired>
  <TimeFrom>0001-01-01T00:00:00</TimeFrom>
  <TimeTo>0001-01-01T00:00:00</TimeTo>
  <WebId>String</WebId>
</GetTeeSlotsRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetTeeSlotsResponse 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>
  <TeeSlots xmlns:d2p1="http://schemas.datacontract.org/2004/07/AIM">
    <d2p1:TeeSlotGeneric>
      <d2p1:Cost>0</d2p1:Cost>
      <d2p1:Cost2>0</d2p1:Cost2>
      <d2p1:Cost3>0</d2p1:Cost3>
      <d2p1:Course>String</d2p1:Course>
      <d2p1:CourseTopic>String</d2p1:CourseTopic>
      <d2p1:DateTime>0001-01-01T00:00:00</d2p1:DateTime>
      <d2p1:Has18Holes>false</d2p1:Has18Holes>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:Location>String</d2p1:Location>
      <d2p1:MinSlots>0</d2p1:MinSlots>
      <d2p1:Note>String</d2p1:Note>
      <d2p1:SlotsOpen>0</d2p1:SlotsOpen>
      <d2p1:StartingOnBack9>false</d2p1:StartingOnBack9>
      <d2p1:WebId>String</d2p1:WebId>
    </d2p1:TeeSlotGeneric>
  </TeeSlots>
</GetTeeSlotsResponse>