Site

There is one operation supported on site.

This call returns an object with the following properties.

Id
The unique identifier of this site
Name
The name used to describe this site
ShortName
A short version of the name for use where the number of characters are limited (max 12 characters)
LegalName
The legal name of this site
NationalCode
If the government of the Veezi customer's country requires site data to be reported, the site's report code should be entered here.
Address1-3/PostCode
The location of this site
Phone1-2
The contact phone numbers for this site
Fax
The fax number for this site
SalesTaxRegistration
The tax identifier this site uses for sales tax
TicketMessage1-2
Custom messages that are printed on patron's tickets
ReceiptMessage1-6
Custom messages that are printed on the patron's reciept
TimeZoneIdentifier
The windows time zone ID the site uses
Country
The name of the country for this site is located
Screens
The ids of screens for this site

GET v1/site

This retrieves details of the site that is associated with the access token.

Sample Response JSON

{
    "Name":"Twilight Cinemas",
    "ShortName":"Twilight Cin",
    "LegalName":"Twilight Cinemas Inc.",
    "NationalCode":null,
    "Address1":"No. 60",
    "Address2":"Khyber Pass Road",
    "Address3":"Auckland",
    "PostCode":null,
    "Phone1":"555-1234",
    "Phone2":null,
    "Fax":"555-9874",
    "SalesTaxRegistration":"G7ABC",
    "TicketMessage1":"Enjoy your movie :)",
    "TicketMessage2":null,
    "ReceiptMessage1":"Thank you for your custom",
    "ReceiptMessage2":null,
    "ReceiptMessage3":null,
    "ReceiptMessage4":null,
    "ReceiptMessage5":null,
    "ReceiptMessage6":null,
    "TimeZoneIdentifier":"New Zealand Standard Time",
    "Country":"New Zealand",
    "Screens":
        [
            {"Id":1},
            {"Id":2},
            {"Id":4}
        ]
 }

Sample Response XML

<Site xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vista.Online.BackOffice.Api.Models.V1">
    <Address1>No. 60</Address1>
    <Address2>Khyber Pass Road</Address2>
    <Address3>Auckland</Address3>
    <Country>New Zealand</Country>
    <Fax>555-9874</Fax>
    <LegalName>Twilight Cinemas Inc.</LegalName>
    <Name>Twilight Cinemas</Name>
    <NationalCode i:nil="true"></NationalCode>
    <Phone1>555-1234</Phone1>
    <Phone2 i:nil="true"></Phone2>
    <PostCode i:nil="true"></PostCode>
    <ReceiptMessage1>Thank you for your custom</ReceiptMessage1>
    <ReceiptMessage2 i:nil="true"></ReceiptMessage2>
    <ReceiptMessage3 i:nil="true"></ReceiptMessage3>
    <ReceiptMessage4 i:nil="true"></ReceiptMessage4>
    <ReceiptMessage5 i:nil="true"></ReceiptMessage5>
    <ReceiptMessage6 i:nil="true"></ReceiptMessage6>
    <SalesTaxRegistration>G7ABC</SalesTaxRegistration>
    <Screens>
        <Screen>
            <Id>1</Id>
        </Screen>
        <Screen>
            <Id>2</Id>
        </Screen>
        <Screen>
            <Id>4</Id>
        </Screen>
    </Screens>
    <ShortName>Twilight Cin</ShortName>
    <TicketMessage1>Enjoy your movie :)</TicketMessage1>
    <TicketMessage2 i:nil="true"></TicketMessage2>
    <TimeZoneIdentifier>New Zealand Standard Time</TimeZoneIdentifier>
</Site>