I am trying to post cuepoints into a podcast episode through the Spreaker API. I keep getting this error “cuepoints: The input should be a JSON-encoded array”
Here is my json script
{
“cuepoints”: [
{
“timecode”: 200000,
“type”: “ad_break”,
“ads_max_count”: 3
}
]
}
Here is my url
https://api.spreaker.com/v2/episodes/67289348/cuepoints?cuepoints=timecode&cuepoints=ads_max_count
What am I doing wrong?