List Servers
This process returns a list of StrandVision servers that are available to be read from. Since the strandvision api servers are load balanced, this will typically only contain one server. It is recommended that this be called once per week in case the DefaultServer needs to be used for future calls. Note that if the primary or default servers are offline, you can use the FailServerList to get read only access to your signage content. Secret Hmac Optional. Cache Time 1 Hour.
GET /Api/Read/Servers
curl \
-X GET https://Api.StrandVision.com/v1.0/Api/Read/Servers \
-H "Authorization: X-apikey $ACCESS_TOKEN"
Response examples (200)
{
"PrimaryServer": "https://Api.StrandVision.com/v1.0",
"DefaultServer": "https://Api.StrandVision.com/v1.0",
"FailServerList": [
"https://StrandVision.com/?api/v1.0",
"https://www1.StrandVision.com/?api/v1.0"
]
}
Response examples (200)
{
"PrimaryServer": "https://Api.StrandVision.com/v1.0",
"DefaultServer": "https://Api.StrandVision.com/v1.0",
"FailServerList": [
{
"url": "https://StrandVision.com/v1.0"
}
]
}