API : IPTV : EPG : Credit : List
Introduction
This request will return a list of credited people who is missing an image.
Request
| URL | https://api.telecomx.dk/iptv/epg/credit/noimage |
| Method | GET |
| Access level | ADMIN |
| Query | start | [optional] Date from which to return credits, defaults to today. |
| limit | [optional] Maximum number of items to return, defaults to 100. |
| channel | [optional] Base channel id of channel to return credits from, null for all channels. |
Query examples
https://api.telecomx.dk/iptv/epg/credit/noimage
https://api.telecomx.dk/iptv/epg/credit/noimage?start=2021-01-01T00:00:000.000Z
https://api.telecomx.dk/iptv/epg/credit/noimage?start=2021-01-01T00:00:000.000Z&limit=1000
https://api.telecomx.dk/iptv/epg/credit/noimage?start=2021-01-01T00:00:000.000Z&limit=1000&channel=7
Response
Array of JSON objects, one item pr. credit.
| JSON object |
| name | String | Name of person |
| type | String | What the person is credited for: ACTOR, DIRECTOR, PRODUCER, DIRECTOR-PRODUCER e.t.c. |
| role | String | Name of the role played, if type is ACTOR. |
Example
[
{
"name": "Sean Connery",
"type": "ACTOR",
"role": "James Bond"
},
{
...
}
]
Errors
| Error code | Message | Description |
| 403 | access_denied | Insufficient access level |
| 500 | internal_error | <Unspecified> |