# getSlideShowInfo

Description: get information about your own slideshow

Request example:

{
    "method" : "getSlideShowInfo",
    "requestId" : "1"
}

Response example:

{
    "available": false,
    "started": false,
    "slides": [
        {
            "idx": 0,
            "name": "Screenshot.png",
            "fileId": 179748251
        }
    ],
    "currentSlideIdx": 0,
    "method": "getSlideShowInfo",
    "requestId" : "1",
    "result": true
}

Parameter description:

  • available — Flag that shows whether it is possible to start a slideshow.

  • started — Flag that shows whether a slideshow is on.

  • currentSlideIdx — It is available only if a slideshow is on and shows the index of a current slide being shown.

  • title — It is available only if a slideshow is running and shows the name of a slideshow.

  • idx — Slide number in the list.

  • name — File name.

  • url — It is available only if a slideshow is on and shows the link of an uploaded slide.

  • fileId — File identifier on the built-in HTTP server

  • slides — the list of slides

  • requestId - a unique request identifier. You can learn more about it here.

See also: