any and all commands related to JSON queries, retrievals, etc. I don't have any documentation in my WIL manual and can't find online how to develop a JSON API script. I see the syntax at THETVDB.com, like this:
SeriesSearchData {
aliases (Array[string], optional),
banner (string, optional),
firstAired (string, optional),
id (integer, optional),
network (string, optional),
overview (string, optional),
seriesName (string, optional),
status (string, optional)
}
which apparently responds with
{
"aliases": [
"string"
],
"banner": "string",
"firstAired": "string",
"id": 0,
"network": "string",
"overview": "string",
"seriesName": "string",
"status": "string"
}there,
but how do I initiate the SeriesSearchData using WIL? What is the syntax for logging in and authenticating my API key? I see an example script for this, and in the absence of add'l docs will model from it and trial/error, but would prefer to understand how to invoke these commands in a WIL script.