<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://ivs.help/wiki/index.php?action=history&amp;feed=atom&amp;title=API_Room_Status</id>
		<title>API Room Status - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://ivs.help/wiki/index.php?action=history&amp;feed=atom&amp;title=API_Room_Status"/>
		<link rel="alternate" type="text/html" href="https://ivs.help/wiki/index.php?title=API_Room_Status&amp;action=history"/>
		<updated>2026-06-07T06:20:11Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://ivs.help/wiki/index.php?title=API_Room_Status&amp;diff=4560&amp;oldid=prev</id>
		<title>IVSWikiBlue: Created page with &quot;This API provides the current status for a specified room.  ===Resource URL=== &lt;pre&gt;http://valt.example.com/api/v3/rooms/{roomid}/status&lt;/pre&gt; ''Replace {roomid} with the actu...&quot;</title>
		<link rel="alternate" type="text/html" href="https://ivs.help/wiki/index.php?title=API_Room_Status&amp;diff=4560&amp;oldid=prev"/>
				<updated>2020-04-14T19:55:28Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;This API provides the current status for a specified room.  ===Resource URL=== &amp;lt;pre&amp;gt;http://valt.example.com/api/v3/rooms/{roomid}/status&amp;lt;/pre&amp;gt; &amp;#039;&amp;#039;Replace {roomid} with the actu...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This API provides the current status for a specified room.&lt;br /&gt;
&lt;br /&gt;
===Resource URL===&lt;br /&gt;
&amp;lt;pre&amp;gt;http://valt.example.com/api/v3/rooms/{roomid}/status&amp;lt;/pre&amp;gt;&lt;br /&gt;
''Replace {roomid} with the actual id number of the room. Rooms are numbered sequentially when added to VALT.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Resource Information===&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|'''Method'''&lt;br /&gt;
|GET&lt;br /&gt;
|-&lt;br /&gt;
|'''Response Type'''&lt;br /&gt;
|JSON&lt;br /&gt;
|-&lt;br /&gt;
|'''Authentication Required'''&lt;br /&gt;
|Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
&lt;br /&gt;
No parameters can be passed to this call.&lt;br /&gt;
&lt;br /&gt;
===Response===&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Code&lt;br /&gt;
!Reason&lt;br /&gt;
|-&lt;br /&gt;
|200&lt;br /&gt;
|Request Successful&lt;br /&gt;
|-&lt;br /&gt;
|401&lt;br /&gt;
|Unauthorized&lt;br /&gt;
|-&lt;br /&gt;
|404&lt;br /&gt;
|Room ID Not Found&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+JSON Response&lt;br /&gt;
!colspan=&amp;quot;2&amp;quot;|data&lt;br /&gt;
|-&lt;br /&gt;
|'''status'''&lt;br /&gt;
|Current Room Status&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Status&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|available&lt;br /&gt;
|Room is available and recording can be started.&lt;br /&gt;
|-&lt;br /&gt;
|recording&lt;br /&gt;
|Room is currently recording.&lt;br /&gt;
|-&lt;br /&gt;
|paused&lt;br /&gt;
|Room is currently recording, but the recording is paused.&lt;br /&gt;
|-&lt;br /&gt;
|prepared&lt;br /&gt;
|Room has been prepared, but the recording has not been initiated.&lt;br /&gt;
|-&lt;br /&gt;
|locked&lt;br /&gt;
|Room has been locked, recording cannot be started until unlocked.&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|'''record'''&lt;br /&gt;
|true = room is currently recording, false = room is not recording&lt;br /&gt;
|-&lt;br /&gt;
|'''record_id'''&lt;br /&gt;
|ID number for the active recording (will only return if record = true.)&lt;br /&gt;
|-&lt;br /&gt;
|'''record_access'''&lt;br /&gt;
|true = current authenticated user has access to the recording, false = current authenticated users does not have access to the recording (will only return if record = true.)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===Request===&lt;br /&gt;
&amp;lt;pre&amp;gt;https://ivstest1.ad.ipivs.com/api/v3/rooms/37/status?access_token=e82632d19c523678fea3d1016c6df9e9&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Successful Response===&lt;br /&gt;
Sample response is shown with line breaks to make it more readable. Actual responses will not include line breaks.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
&amp;quot;data&amp;quot;:{&lt;br /&gt;
&amp;quot;status&amp;quot;: &amp;quot;available&amp;quot;,&lt;br /&gt;
&amp;quot;record&amp;quot;: false&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Failure Response===&lt;br /&gt;
&amp;lt;pre&amp;gt;{&amp;quot;error&amp;quot;:{&amp;quot;code&amp;quot;:401,&amp;quot;message&amp;quot;:&amp;quot;No API key provided&amp;quot;}}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>IVSWikiBlue</name></author>	</entry>

	</feed>