Photo 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 Photo 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 Photo Object

{
  "uuid": "i-ca2ad1bc-47d0-4294-a981-adc688cba2aa",
  "preview_thumbnail_url": "https://www.cameratag.com/assets/i-ca2ad1bc-47d0-4294-a981-adc688cba2aa/photo.jpg",
  "preview_full_thumbnail_url": "https://www.cameratag.com/assets/i-ca2ad1bc-47d0-4294-a981-adc688cba2aa/photo.jpg",
  "state": "processed",
  "name": null,
  "description": null,
  "type": "Photo",
  "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
  "camera_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
  "medias": {
    "photo": {
      "width": 640,
      "height": 480,
      "length": null,
      "media_type": "photo",
      "name": "photo",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/i-ca2ad1bc-47d0-4294-a981-adc688cba2aa.jpg"
      }
    }
  }
}

Unauthenticated Photo Object

{
  "uuid": "i-ca2ad1bc-47d0-4294-a981-adc688cba2aa",
  "preview_thumbnail_url": "https://www.cameratag.com/assets/i-ca2ad1bc-47d0-4294-a981-adc688cba2aa/photo.jpg",
  "preview_full_thumbnail_url": "https://www.cameratag.com/assets/i-ca2ad1bc-47d0-4294-a981-adc688cba2aa/photo.jpg",
  "state": "processed",
  "name": null,
  "description": null,
  "type": "Photo",
  "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
  "camera_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
  "medias": {
    "photo": {
      "width": 640,
      "height": 480,
      "length": null,
      "media_type": "photo",
      "name": "photo",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/i-ca2ad1bc-47d0-4294-a981-adc688cba2aa.jpg"
      }
    }
  }
}