/api/preview/setup
Use this interface to setup for images reception.
Prototype
Protocol |
HTTP/HTTPS POST |
URL |
ip[:port]/api/preview/setup |
Content-Type |
Request: Content-Type: application/json Response: Content-Type: application/json |
Request Cookies
Parameter |
Description |
mwcloud-sid |
A string that is used to identify current logged-in user. |
mwcloud-uid |
Current logged-in username. |
Request Body
Parameter |
Description |
id |
Connection id |
add |
An array of image IDs to be added in a persistent connection. |
del |
An array of image IDs to be deleted in a persistent connection. |
Request Example
POST /api/channel/add HTTP/1.1
Accept: application/json, text/plain, */*
Content-Type: application/json;charset=utf-8
Content-Length: xx
Cookie: mwcloud-sid=OCXWUMGEYPGIAWWOETYXPNMVHDZIAZJP; mwcloud-uid=Admin;
{
"id":"1231232",
"add": [1,3]
}
Response Parameters
Parameter |
Description |
Content-Type |
Value: 'application/json; charset=UTF-8' |
Response Body
Response Example
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
content-length: xx
{
"result": 0
}