GET imcc/v1/profiles/
Gets all profiles for your database.
This can be used to determine the corresponding media rendition profiles from the media rendition profile IDs that are received from webhook notifications.
Resource URL
https://{MEDIACONTROLCENTRE_HOST}[:PORT]/imcc/v1/profiles/
Resource Information
Response formats | XML |
Requires authentication? | Yes (application context only) |
Required scope | Not applicable |
Response
Return list of supported profiles as XML.
Example Request
curl -i -X GET https://{MEDIACONTROLCENTRE_HOST}[:PORT]/imcc/v1/profiles
Example Result
<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Profiles>
<Profile>
<Name>VideoStills</Name>
<ID>9</ID>
<Type>Stills</Type>
<Usage>Rendition</Usage>
<Attributes>
<Format>JPEG</Format>
<Description>Video Stills - Thumbnail Quality</Description>
</Attributes>
</Profile>
<Profile>
<Name>ReferenceImage</Name>
<ID>10</ID>
<Type>Image</Type>
<Usage>Rendition</Usage>
<Attributes>
<Format>JPEG</Format>
<Description>Image - Reference Quality</Description>
</Attributes>
</Profile>
<Profile>
<Name>Thumbnail</Name>
<ID>11</ID>
<Type>Thumbnail</Type>
<Usage>Rendition</Usage>
<Attributes>
<Format>JPEG</Format>
<Description>Image - Thumbnail Quality</Description>
</Attributes>
</Profile>
<Profile>
<Name>Subtitles</Name>
<ID>18</ID>
<Type>Subtitles</Type>
<Usage>Rendition</Usage>
<Attributes>
<Format>Subtitles</Format>
<Description>Subtitles</Description>
</Attributes>
</Profile>
<Profile>
<Name>HLS Video</Name>
<ID>19</ID>
<Type>HLS</Type>
<Usage>Rendition</Usage>
<Attributes>
<Format>HLS Video</Format>
<Description>MP4 video file optimised for HLS delivery on ImagenWeb</Description>
</Attributes>
</Profile>
<Profile>
<Name>HLS Audio</Name>
<ID>20</ID>
<Type>HLS</Type>
<Usage>Rendition</Usage>
<Attributes>
<Format>HLS Audio</Format>
<Description>AAC audio file optimised for HLS delivery on ImagenWeb</Description>
</Attributes>
</Profile>
</Profiles>
</Response>