H R Sprint
API calls for HR sprints
Create a sprint
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "http://localhost:18080/api/v1/hr/sprints" \ -H "Content-Type: application/json" \ -d '{ "endDate": "2019-08-24", "name": "string", "startDate": "2019-08-24", "status": "PLANNING" }'{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get active sprint
In: header
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/active"{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Bulk create sprints
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "http://localhost:18080/api/v1/hr/sprints/bulk" \ -H "Content-Type: application/json" \ -d '{ "count": 0, "durationDays": 0, "namePrefix": "string", "projectId": "string", "startDate": "2019-08-24", "startNumber": 0 }'[
{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get sprints by project
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/by-project/string"[
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get sprints by status
In: header
Path Parameters
"PLANNING" | "ACTIVE" | "COMPLETED"Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/by-status/PLANNING"[
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Download Csv_ Sprint
In: header
Query Parameters
0int3220int32Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/csv-export""string"{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Delete a list of entities by their IDs
In: header
Query Parameters
Response Body
application/json
application/json
application/json
curl -X DELETE "http://localhost:18080/api/v1/hr/sprints/delete-list?ids=string"{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Dynamic Search_ Sprint
In: header
Query Parameters
0int3220int32Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/dynamic-search"{
"content": [
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Dynamic Search Post_ Sprint
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "http://localhost:18080/api/v1/hr/sprints/dynamic-search" \ -H "Content-Type: application/json" \ -d '{ "filters": { "property1": null, "property2": null }, "page": 0, "search": [ "string" ], "size": 0, "sort": [ { "ascending": true, "field": "string" } ] }'{
"content": [
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Find by list of ids in current tenant
In: header
Query Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/find?ids=string"[
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Find all for current tenant
In: header
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/find-all"[
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Find a list of entities by their IDs
In: header
Query Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/find-list"[
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Find by id in current tenant
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/find/string"{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get paginated sprints
In: header
Query Parameters
int32int32"ASC" | "DESC"Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/page"{
"content": [
{
"completedPoints": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get velocity
In: header
Query Parameters
5int32Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/velocity"[
{
"completedPoints": 0,
"plannedPoints": 0,
"sprintId": "string",
"sprintName": "string"
}
]{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get enriched sprint
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/string"{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Update a sprint
In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X PATCH "http://localhost:18080/api/v1/hr/sprints/string" \ -H "Content-Type: application/json" \ -d '{ "endDate": "2019-08-24", "name": "string", "startDate": "2019-08-24", "status": "PLANNING" }'{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Delete by id in current tenant
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X DELETE "http://localhost:18080/api/v1/hr/sprints/string"{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get sprint burndown
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/string/burndown"{
"dailyProgress": [
{
"date": "2019-08-24",
"idealRemaining": 0.1,
"remainingPoints": 0
}
],
"sprintId": "string",
"totalPoints": 0
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Add a comment to an entity
In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "http://localhost:18080/api/v1/hr/sprints/string/comment" \ -H "Content-Type: application/json" \ -d 'string'{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Complete a sprint
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X POST "http://localhost:18080/api/v1/hr/sprints/string/complete"{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Start a sprint
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X POST "http://localhost:18080/api/v1/hr/sprints/string/start"{
"completedPoints": 0,
"completedTaskCount": 0,
"created": "2019-08-24T14:15:22Z",
"createdBy": "string",
"endDate": "2019-08-24",
"events": [
{
"authorId": "string",
"date": "2019-08-24T14:15:22Z",
"description": "string",
"id": "string",
"type": "CREATE"
}
],
"goal": "string",
"id": "string",
"name": "string",
"plannedPoints": 0,
"projectId": "string",
"startDate": "2019-08-24",
"status": "PLANNING",
"taskCount": 0,
"tenantId": "string",
"updated": "2019-08-24T14:15:22Z",
"updatedBy": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}Get sprint time report
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "http://localhost:18080/api/v1/hr/sprints/string/time-report"{
"sprintId": "string",
"sprintName": "string",
"tasks": [
{
"assigneeName": "string",
"billableHours": 0.1,
"clientRef": "string",
"estimatedHours": 0.1,
"loggedHours": 0.1,
"taskCode": "string",
"taskId": "string",
"taskName": "string",
"taskType": "TASK"
}
],
"totalBillableHours": 0.1,
"totalLoggedHours": 0.1
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}{
"detail": "string",
"time": "2019-08-24T14:15:22Z",
"title": "string"
}