ContributionsMost RecentMost LikesSolutionsRe: cicd automation integration script returns 500 Error in input I was not able to get the curl request working no matter what I did. You should be able to make the call work in any scripting language or postman. Just make sure the Content-Type is multipart/form-data or else it wont read the files correctly. Re: Mandatory Fields issue at Integration Script In your body try adding a key value pair mandatoryFields = {"reporter":{"label":"Firstname Lastname","name":"Firstname Lastname", "id":"ENTER_USER_ID"}} Re: How to generate JWT TOKEN from Postman Hi I was able to generate a JWT token in postman. You want to create a POST request to this URL https://prod-vortexapi.zephyr4jiracloud.com/api/v1/jwt/generate Add Key value for Header Content-Type = application/json For Body select raw input { "accessKey":"XXXXXXXXXXX", "secretKey":"XXXXXXXXXX", "accountId":"XXXXXXXXXXXX" } Re: JWT Token generation alternatives You should be able to generate the JWT token using anything that can make a POST request. Any scripting language or even Postman can generate one. I have no idea why they give the worst possible java code as an example. Here is my implementation in Javascript + superagent const superagent = require('superagent'); let jwtToken const JWT_GENERATE_URL = 'https://prod-vortexapi.zephyr4jiracloud.com/api/v1/jwt/generate' const ZEPHYR_ACCESS_KEY = XXXXXXXX const ZEPHYR_SECRET_KEY = XXXXXXXX const ZEPHYR_ADMIN_USER_ID = XXXXXXXX const jwtTokenRequestBody = { "accessKey": ZEPHYR_ACCESS_KEY, "secretKey": ZEPHYR_SECRET_KEY, "accountId": ZEPHYR_ADMIN_USER_ID} try { const res = await superagent .post(JWT_GENERATE_URL) .set('Content-Type', 'application/json') .send(jwtTokenRequestBody); jwtToken = res.text } catch (err) { console.error(err); } console.log(jwtToken)