Non-Working API
Get information about the configured non-working Issues and Projects.
All requests need to be made to this base URL:
https://jttp-cloud.everit.biz/timetracker/api/latest/public
Get non-working Issues and Projects GET /non-working
Header parameters
Header Parameter | Optional | Description |
---|---|---|
x-everit-api-key | false | Generated Everit authentication token, see: REST API |
x-everit-jwt | false | JWT token (deprecated, use the new x-everit-api-key instead) |
Examples
GET URL: TIME_TRACKER_BASE_URL/timetracker/api/latest/public/non-working
Example response:
200
Successful operation:
{
"nonWorkingIssues": [
{
"id": 10043,
"key": "NWA-3",
"summary": "Non working issue"
}
],
"nonWorkingProjects": [
{
"id": 10001,
"key": "NWA",
"name": "Non working activities"
},
{
"id": 10000,
"key": "TES",
"name": "test"
}
]
}
401
Unauthorized
479
The user does not have one of the necessary Timetracker permissions that can be set in the Global Settings.