GET status

Retrieves basic status information for the API.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The status of the site.

Status
NameDescriptionTypeAdditional information
SiteId

integer

None.

Name

string

None.

Live

boolean

None.

Response Formats

application/json, text/json, text/html

Sample:
{
  "siteId": 1,
  "name": "sample string 2",
  "live": true
}

application/xml, text/xml

Sample:
<Status xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tricycle.Studio.Api.Catalog.Models">
  <Live>true</Live>
  <Name>sample string 2</Name>
  <SiteId>1</SiteId>
</Status>