Major changes to Connect REST APIs are coming to improve user privacy

I try to delete project with rest API, I get 500 error even though it seems that the project does get deleted.

Using oauth with Bearer token, I’m trying to delete a project via the rest api like this:

curl -X DELETE \
  https://api.atlassian.com/ex/jira/.../rest/api/3/project/11349 \
  -H 'authorization: Bearer ... ' \
  -H 'cache-control: no-cache'

API returns 500 error like this:


HTTP 500 https://api.atlassian.com/ex/jira/.../rest/api/3/project/11349
Read timed out

response_headers = {
    'X-XSS-Protection': '1; mode=block',
    'X-Content-Type-Options': 'nosniff',
    'X-Application-Context': 'Stargate:prod,prod-east:8080',
    'transfer-encoding': 'chunked',
    'Strict-Transport-Security': 'max-age=315360000; includeSubDomains; preload',
    'X-Failure-Category': 'SOCKET_TIMEOUT',
    'Connection': 'close',
    'Date': 'Tue, 21 May 2019 23:10:09 GMT',
    'Content-Type': 'application/json;charset=UTF-8'
}

response_text ={
    "timestamp": "2019-05-21T23:10:09.945+0000",
    "status": 500,
    "error": "Internal Server Error",
    "exception": "com.netflix.zuul.exception.ZuulException",
    "message": "Read timed out"
}
1 Like