Video Object
The REST endpoints that return asset objects will return different objects for each type of asset (Video, Photo, Audio). Below are examples of the Video object in their authenticated and unauthenticated states.You can also check out the Video Object Documentation , Photo Object Documentation or the Audio Object Documentation
Authenticated Video Object
{ "uuid": "v-90b2d479-011d-449f-ba6c-f7854882aa81", "preview_thumbnail_url": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_thumb.jpg", "preview_full_thumbnail_url": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_thumb.jpg", "preview_mp4_url": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/Testeroo.mp4", "preview_webm_url": "http://static.cameratag.com/processing.mp4", "state": "deleted", "name": "", "description": "", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "vga_thumb": { "width": 1280, "height": 720, "length": null, "media_type": "thumb", "name": "vga_thumb", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_thumb.jpg" } }, "vga_filmstrip": { "width": 1280, "height": 720, "length": null, "media_type": "filmstrip", "name": "vga_filmstrip", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_filmstrip.jpg" } }, "Testeroo": { "width": 1280, "height": 720, "length": 15, "media_type": "mp4", "name": "Testeroo", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/Testeroo.mp4" } }, "Original": { "width": null, "height": null, "length": null, "media_type": "original", "name": "Original", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/Original.flv" } } } }
Unauthenticated Video Object
{ "uuid": "v-90b2d479-011d-449f-ba6c-f7854882aa81", "preview_thumbnail_url": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_thumb.jpg", "preview_full_thumbnail_url": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_thumb.jpg", "preview_mp4_url": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/Testeroo.mp4", "preview_webm_url": "http://static.cameratag.com/processing.mp4", "state": "deleted", "name": "", "description": "", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "vga_thumb": { "width": 1280, "height": 720, "length": null, "media_type": "thumb", "name": "vga_thumb", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_thumb.jpg" } }, "vga_filmstrip": { "width": 1280, "height": 720, "length": null, "media_type": "filmstrip", "name": "vga_filmstrip", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/vga_filmstrip.jpg" } }, "Testeroo": { "width": 1280, "height": 720, "length": 15, "media_type": "mp4", "name": "Testeroo", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/Testeroo.mp4" } }, "Original": { "width": null, "height": null, "length": null, "media_type": "original", "name": "Original", "state": "DELETED", "urls": { "cameratag": "https://staging.cameratag.com/assets/v-90b2d479-011d-449f-ba6c-f7854882aa81/Original.flv" } } } }