Atlassian API get request

I am beginner with Postman API.

Set up a test website in Atlassian and tried to hit with API Requests.

Getting 200 OK success, the response body is empty.

Please advise,

Get request of :
https://your-domain.atlassian.net/rest/api/3/issuetype/project

Usually, when I encounter a 200 OK status but get an empty response body, it means the API call was technically successful, but no data was returned. It is either because there’s no data to return, or the request parameters aren’t correct.
If you’re testing this through code, you can use simple print statements or log the response data before sending it back as a response to the API request. This can help you confirm whether the issue is on the Postman side or in how you’re handling the response.

1 Like