I have few question regarding connecting to Zephyr Sqad Rest API.
What would be the base URL, is https://prod-api.zephyr4jiracloud.com/connect the base URL for every organisation.
Also while generating JWT token, what all parameters should be passed in the payload. Currently I am passing
var payload = new Dictionary<string, object>()
{
{ "sub", ACCOUNT_ID }, //assign subject
{ "qsh", getQSH(canonical_path) }, //assign query string hash
{ "iss", ACCESS_KEY }, //assign issuer
{ "iat", iat }, //assign issue at(in ms)
{ "exp", exp } //assign expiry time(in ms)
};
But Canonical path is not working I guess.
And while making an Asynch call I am getting Forbidden error.
Can someone please guide me on this connectivity.