Viz Channel Branding User Guide

Version 5.1 | Published October 26, 2023 ©

GET API Root (Version 2.0)

The starting point for the structure of the REST API is found by calling the address and IP for the service. The port for Integrations Hub v2 REST API is by default 9991.

Example request using curl against the service on a local machine would be: curl -X GET http://127.0.0.1:9991/

The rest of the guide assumes each request is prefixed with the localhost/IP and port as needed and only lists the end-points addresses.

In general, if the Media Sequencer service is down, this will result in a HTTP/1.1 503 ServiceUnavailable response.


Syntax
GET /
Request
GET / HTTP/1.1
Response
HTTP/1.1 200 OK
Content-Type: application/vizrt.integrationshubv2+xml; type=root
<inthub:root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:inthub="http://www.vizrt.com/integrationshub">
<inthub:refLink rel="channels" type="application/vizrt.integrationshubv2+xml; type=list" href="http://127.0.0.1:9991/api/channels" />
</inthub:root>

Disallowed Actions

This end-point does not allow POST, PUT or DELETE, and will return a 'HTTP/1.1 405 Method Not Allowed'.