Hi I follow the document here to gain access token with scopes "tickets:read users:read auditlogs:read".
After oauth flow completed, I got the response with
endpoint: /api/v2/ticket.json and /api/v2/ticket_audit.json
response:
{"error":"Forbidden","description":"You are missing the following required scopes: read"}"
But If I change the requesting scopes to only "read", it works fine.
I am wondering if there's anything I overlook and need to revise ?
thanks!
Are you wrapping the scopes in an array? If not I'd try that
"scopes": ["tickets:read", "users:read", "auditlogs:read"].Let me know if this doesn't fix your issue!