Export EDID of HDMI input
1. API Description
This API is used to export the EDID of HDMI input port as a .bin file.
Request mode:
- V2.6.0 and above: POST [ip]/mwapi/V2.0/input/export-edid
- V2.5.0 and below: POST [ip]/mwapi/export-edid
Administrator Rights | Logged-in |
---|---|
No | Yes |
2. Input Parameters
Name | Required | Type | Description |
---|---|---|---|
source-id | Yes | Int | The input source ID 0: HDMI 1; 1: HDMI 2 |
file-name | Yes | String | The name of the exported file, ending in .bin |
3. Output Parameters
Binary EDID file.
4. Example
Exporting the EDID of HDMI 1, and name the file "file.bin".
Input Example
{
"source-id": 0,
"file-name": "file.bin"
}
Output Example
Response Headers
Content-Type: application/octet-stream
content-disposition: attachment; filename="file.bin"
Response Body
Binary EDID file.
5. Error Code
No error code related to the API business logic. For other error codes, see Common Error Codes.