[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-29 (世界標準時間)。"],[[["\u003cp\u003eThe \u003ccode\u003eCameraImage\u003c/code\u003e trait applies to Nest devices that can capture images, such as Nest Cam (legacy), Nest Hub Max, and Nest Doorbell (legacy).\u003c/p\u003e\n"],["\u003cp\u003eThis trait provides information about the maximum supported image resolution for the device through the \u003ccode\u003emaxImageResolution\u003c/code\u003e field which includes width and height.\u003c/p\u003e\n"],["\u003cp\u003eYou can retrieve image resolution information using a GET request to the device's endpoint, which will return a JSON response containing the \u003ccode\u003emaxImageResolution\u003c/code\u003e data within the \u003ccode\u003esdm.devices.traits.CameraImage\u003c/code\u003e trait.\u003c/p\u003e\n"],["\u003cp\u003eThere are no specific commands associated with the \u003ccode\u003eCameraImage\u003c/code\u003e trait, it primarily serves to provide image resolution details.\u003c/p\u003e\n"]]],[],null,["\u003cbr /\u003e\n\nCameraImage Schema\n\n[Nest Cam (legacy)](/nest/device-access/api/camera) [Nest Hub Max](/nest/device-access/api/display) [Nest Doorbell (legacy)](/nest/device-access/api/doorbell)\n\n`sdm.devices.traits.CameraImage`\n\nThis trait belongs to any device that supports taking images.\n\n\u003cbr /\u003e\n\nFields\n\n\n| Field | Description | Data Type |\n|----------------------|---------------------------------------------|-------------------------------------|\n| `maxImageResolution` | Maximum image resolution that is supported. | [ImageResolution](#imageresolution) |\n\nImageResolution (maxImageResolution)\n\n| Field | Description | Data Type |\n|----------|---------------------------------------------------------------------------------------------|-----------------------|\n| `width` | Maximum image resolution width. May also be used as a query parameter in the download URL. | `int32` Example: 1280 |\n| `height` | Maximum image resolution height. May also be used as a query parameter in the download URL. | `int32` Example: 960 |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nSample GET request and response \n\nRequest \n\n```\nGET /enterprises/project-id/devices/device-id\n```\n\nResponse \n\n {\n \"name\" : \"enterprises/project-id/devices/device-id\",\n \"traits\" : {\n \"sdm.devices.traits.CameraImage\" : {\n \"maxImageResolution\" : {\n \"width\" : 1280,\n \"height\" : 960\n }\n }\n }\n }\n\n\u003cbr /\u003e\n\nCommands\n\nThere are no commands available for this trait.\n\n\nErrors\n\nSee the [API Error Code Reference](/nest/device-access/reference/errors/api) for\nthe full list of API error codes.\n\n\u003cbr /\u003e"]]