Get time estimates for requests in a project
1 分
GET
https://api.app.kognic.com/v1/request-time-estimates
projectIdinteger<int64>
excludeArchivedboolean
acceptstringGenerated from available response content types
200
400Bad request
401Unauthorized
403Forbidden
404Not found
413Payload too large
500Internal server error
import requests
import json
url = "https://api.app.kognic.com/v1/request-time-estimates?projectId=integer<int64>&excludeArchived=false"
payload = {}
headers = {
'accept': 'application/json',
'content-type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)