TicketUserServices

<back to all web services

GetEventDetails

Requires Authentication
Requires any of the roles:Admin, TeamAdmin, MobileAppRequires the permission:ReadData
The following routes are available for this service:
GET POST/eventDetails/Reference/{ReferenceId}
GET POST/eventDetails/{Id}

export class EventDetails
{
    public id?: number;
    public name?: string;
    public description?: string;
    public externalReference?: string;
    public timeOfEvent?: string;
    public eventLocationId?: number;
    public eventSeriesId?: number;
    public eventOwnerId?: number;
    public eventActive?: boolean;
    public eventOwnerName?: string;
    public externalOwnerId?: string;
    public teamAwayId?: string;
    public teamAwayName?: string;
    public eventSeriesName?: string;
    public eventLocationName?: string;
    public latitude?: number;
    public longitude?: number;
    public defaultValues?: string;
    public externalReferenceType?: string;
    public eventSeriesActive?: boolean;
    public allowedKsiCard?: string;
    public seriesId?: string;
    public seriesShowByDefault?: boolean;
    public postponedNoDate?: boolean;
    public awayTeamExternalId?: string;
    public sportGenderId?: string;
    public externalIdType?: string;
    public seriesEventSaleSuspended?: boolean;
    public seriesSaleSuspensionEventStartDate?: string;
    public seriesSaleSuspensionEventEndDate?: string;
    public saleIsActive?: boolean;
    public hideEvent?: boolean;
    public imageUrl2?: string;
    public directAccessCode?: string;
    public imageUrl?: string;
    public detailedDescription?: string;
    public ownerImageUrl?: string;
    public ownerImageUrl2?: string;
    public ownerCardsNotAllowed?: boolean;
    public seatingImageUrl?: string;
    public endOfEvent?: string;
    public endOfEventUTC?: string;
    public timeZone?: string;
    public timeOfEventUTC?: string;

    public constructor(init?: Partial<EventDetails>) { (Object as any).assign(this, init); }
}

export class GetEventDetails
{
    public id?: number;
    public referenceId?: string;

    public constructor(init?: Partial<GetEventDetails>) { (Object as any).assign(this, init); }
}

TypeScript GetEventDetails 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 /eventDetails/Reference/{ReferenceId} HTTP/1.1 
Host: stubbur-autoupdates-live.smartnewapis.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetEventDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
  <Id>0</Id>
  <ReferenceId>String</ReferenceId>
</GetEventDetails>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<EventDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel.Types">
  <AllowedKsiCard>String</AllowedKsiCard>
  <AwayTeamExternalId>String</AwayTeamExternalId>
  <DefaultValues>String</DefaultValues>
  <Description>String</Description>
  <DetailedDescription>String</DetailedDescription>
  <DirectAccessCode>String</DirectAccessCode>
  <EndOfEvent>0001-01-01T00:00:00</EndOfEvent>
  <EndOfEventUTC>0001-01-01T00:00:00</EndOfEventUTC>
  <EventActive>false</EventActive>
  <EventLocationId>0</EventLocationId>
  <EventLocationName>String</EventLocationName>
  <EventOwnerId>0</EventOwnerId>
  <EventOwnerName>String</EventOwnerName>
  <EventSeriesActive>false</EventSeriesActive>
  <EventSeriesId>0</EventSeriesId>
  <EventSeriesName>String</EventSeriesName>
  <ExternalIdType>String</ExternalIdType>
  <ExternalOwnerId>String</ExternalOwnerId>
  <ExternalReference>String</ExternalReference>
  <ExternalReferenceType>String</ExternalReferenceType>
  <HideEvent>false</HideEvent>
  <ID>0</ID>
  <ImageUrl>String</ImageUrl>
  <ImageUrl2>String</ImageUrl2>
  <Latitude>0</Latitude>
  <Longitude>0</Longitude>
  <Name>String</Name>
  <OwnerCardsNotAllowed>false</OwnerCardsNotAllowed>
  <OwnerImageUrl>String</OwnerImageUrl>
  <OwnerImageUrl2>String</OwnerImageUrl2>
  <PostponedNoDate>false</PostponedNoDate>
  <SaleIsActive>false</SaleIsActive>
  <SeatingImageUrl>String</SeatingImageUrl>
  <SeriesEventSaleSuspended>false</SeriesEventSaleSuspended>
  <SeriesId>String</SeriesId>
  <SeriesSaleSuspensionEventEndDate>0001-01-01T00:00:00</SeriesSaleSuspensionEventEndDate>
  <SeriesSaleSuspensionEventStartDate>0001-01-01T00:00:00</SeriesSaleSuspensionEventStartDate>
  <SeriesShowByDefault>false</SeriesShowByDefault>
  <SportGenderId>String</SportGenderId>
  <TeamAwayId>String</TeamAwayId>
  <TeamAwayName>String</TeamAwayName>
  <TimeOfEvent>0001-01-01T00:00:00</TimeOfEvent>
  <TimeOfEventUTC>0001-01-01T00:00:00</TimeOfEventUTC>
  <TimeZone>String</TimeZone>
</EventDetails>