Create a new project
1 分
POST
https://api.app.kognic.com/v2/projects
acceptstringGenerated from available response content types
bodyobjectProject to create. The workspaceId is required if you have access to more than one workspace.
200
400Bad request
403Forbidden
import requests
import json
url = "https://api.app.kognic.com/v2/projects"
payload = json.dumps({
"title": ""
})
headers = {
'accept': 'application/json',
'content-type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)