Change Source for Specified Screen in Profile
1. API Description
This API is used to change the source for a specified screen.
Request mode: POST [ip]/api/profile/screen/select
| Administrator Rights | Login Authentication |
|---|---|
| No | Yes |
2. Input Parameters
| Parameter | Type | Description |
|---|---|---|
| id | Int | Profile ID |
| screen-index | Int | Screen index |
| source-id | Int | Source ID |
3. Output Parameters
| Parameter | Type | Description |
|---|---|---|
| status | Int | Status code |
4. Example
Set profile with ID=2, screen index 1 to use source with ID=10045
Request Example
{
"id": 2,
"screen-index": 1,
"source-id": 10045
}
Output Example
{
"status": 0
}