1. Knowledge Base
  2. Developers
  3. Imagen Management Endpoints

GET Profiles 📰

Returns all storage profiles available and can be filtered by profile type and usage

Resource URL

https://{MEDIACONTROLCENTRE_HOST}[:PORT]/imcc/v1/profiles

Response formats XML
Requires authentication? No
Required scope(s) none

 

 

Parameters

Arguments should be supplied as parameters as shown below


?type={Type goes here. Can be Original/Rendition/Temporary} Defaults to all if not specified


?usage={Usage goes here. Can be Video/Audio/Image} Defaults to all if not specified


Example REST request

https://{MEDIACONTROLCENTRE_HOST-FQDN}:83/imcc/v1/profiles?type=video&usage=rendition

Example Response

Returns success or an error response on failure.


Response on success

<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Profiles>
        <Profile>
            <Name>ThumbnailVideo</Name>
            <ID>1001</ID>
            <Type>Video</Type>
            <Usage>Rendition</Usage>
            <Attributes>
                <Format>MP4 Thumbnail Video</Format>
                <Description>MP4 thumbnail video file</Description>
                <DownloadCostMultiplier>0</DownloadCostMultiplier>
            </Attributes>
        </Profile>
        <Profile>
            <Name>Watermark</Name>
            <ID>1002</ID>
            <Type>Video</Type>
            <Usage>Rendition</Usage>
            <Attributes>
                <Format>MP4</Format>
                <DownloadCostMultiplier>0</DownloadCostMultiplier>
                <DisplayNames>[{&quot;language&quot;:&quot;en-GB&quot;,&quot;name&quot;:&quot;Watermark&quot;}]</DisplayNames>
            </Attributes>
        </Profile>
    </Profiles>
</Response>

Response on failure 

Standard failure response