<?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_List_Camera_Presets</id>
		<title>API List Camera Presets - 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_List_Camera_Presets"/>
		<link rel="alternate" type="text/html" href="https://ivs.help/wiki/index.php?title=API_List_Camera_Presets&amp;action=history"/>
		<updated>2026-06-17T19:01:27Z</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_List_Camera_Presets&amp;diff=17609&amp;oldid=prev</id>
		<title>IVSWikiBlue: Created page with &quot;This API call retrieves all presets associated with a specific camera.  ===Resource URL=== &lt;pre&gt;http://valt.example.com/api/v3/presets/{camera}&lt;/pre&gt; ''Replace {camera} with t...&quot;</title>
		<link rel="alternate" type="text/html" href="https://ivs.help/wiki/index.php?title=API_List_Camera_Presets&amp;diff=17609&amp;oldid=prev"/>
				<updated>2026-06-11T21:10:38Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;This API call retrieves all presets associated with a specific camera.  ===Resource URL=== &amp;lt;pre&amp;gt;http://valt.example.com/api/v3/presets/{camera}&amp;lt;/pre&amp;gt; &amp;#039;&amp;#039;Replace {camera} with t...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This API call retrieves all presets associated with a specific camera.&lt;br /&gt;
&lt;br /&gt;
===Resource URL===&lt;br /&gt;
&amp;lt;pre&amp;gt;http://valt.example.com/api/v3/presets/{camera}&amp;lt;/pre&amp;gt;&lt;br /&gt;
''Replace {camera} with the ID of the camera.''&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;
|'''Headers'''&lt;br /&gt;
|Content-Type: application/json&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;
====Path Parameters====&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Parameter&lt;br /&gt;
!Description&lt;br /&gt;
!Example&lt;br /&gt;
|-&lt;br /&gt;
|'''camera'''&lt;br /&gt;
|The ID of the camera.&lt;br /&gt;
|1&lt;br /&gt;
|}&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;
|Success&lt;br /&gt;
|-&lt;br /&gt;
|400&lt;br /&gt;
|Invalid Request (See Response for Specific Error)&lt;br /&gt;
|-&lt;br /&gt;
|401&lt;br /&gt;
|Unauthorized&lt;br /&gt;
|-&lt;br /&gt;
|500&lt;br /&gt;
|Internal Server Error&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A successful response returns a JSON array of Preset objects. Each Preset object contains the following fields:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Preset Object Fields&lt;br /&gt;
!Field&lt;br /&gt;
!Type&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|'''id'''&lt;br /&gt;
|int&lt;br /&gt;
|Unique identifier of the preset.&lt;br /&gt;
|-&lt;br /&gt;
|'''name'''&lt;br /&gt;
|string&lt;br /&gt;
|The name of the preset.&lt;br /&gt;
|-&lt;br /&gt;
|'''camera'''&lt;br /&gt;
|int&lt;br /&gt;
|The ID of the camera the preset belongs to.&lt;br /&gt;
|-&lt;br /&gt;
|'''data'''&lt;br /&gt;
|string&lt;br /&gt;
|The PTZ (pan, tilt, zoom) data for the preset, formatted as a query string.&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/presets/1?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;
  {&lt;br /&gt;
    &amp;quot;id&amp;quot;: 14,&lt;br /&gt;
    &amp;quot;name&amp;quot;: &amp;quot;preset 1&amp;quot;,&lt;br /&gt;
    &amp;quot;camera&amp;quot;: 1,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;pan=12.8&amp;amp;tilt=-0.99&amp;amp;zoom=1&amp;quot;&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;
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;error&amp;quot;: {&lt;br /&gt;
    &amp;quot;code&amp;quot;: 500,&lt;br /&gt;
    &amp;quot;message&amp;quot;: &amp;quot;Internal Server Error&amp;quot;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>IVSWikiBlue</name></author>	</entry>

	</feed>