I am trying to get image link from Shutterstock API, as described in the docs, but keep getting "message": "You do not have access to this route. Please contact api@shutterstock.com for more information"
response.
I'm using correct Subscription_id
and access token. Request URI is:
https://api.shutterstock.com/v2/images/licenses?subscription_id={{SUBSCRIPTION_ID}}
Request body:
{
"images": [
{
"image_id": "59656357",
"format": "jpg"
},
{
"image_id": "1079756147",
"format": "jpg"
}
]
}
I've a paid monthly subscription, so everything should work. What could be wrong?