AlphaAlpha Docs

H R Sprint

API calls for HR sprints

Create a sprint

POST
/hr/sprints
AuthorizationBearer <token>

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

GET
/hr/sprints/active
AuthorizationBearer <token>

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

POST
/hr/sprints/bulk
AuthorizationBearer <token>

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

GET
/hr/sprints/by-project/{projectId}
AuthorizationBearer <token>

In: header

Path Parameters

projectId*string

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

GET
/hr/sprints/by-status/{status}
AuthorizationBearer <token>

In: header

Path Parameters

status*string
Value in"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

GET
/hr/sprints/csv-export
AuthorizationBearer <token>

In: header

Query Parameters

search?array<>
filters?array<>
page?integer
Default0
Formatint32
size?integer
Default20
Formatint32
sort?string

Response 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

DELETE
/hr/sprints/delete-list
AuthorizationBearer <token>

In: header

Query Parameters

ids*array<>

Response Body

application/json

application/json

application/json

curl -X DELETE "http://localhost:18080/api/v1/hr/sprints/delete-list?ids=string"
Empty
{
  "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

GET
/hr/sprints/dynamic-search
AuthorizationBearer <token>

In: header

Query Parameters

search?array<>
filters?array<>
page?integer
Default0
Formatint32
size?integer
Default20
Formatint32
sort?string

Response 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

POST
/hr/sprints/dynamic-search
AuthorizationBearer <token>

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

GET
/hr/sprints/find
AuthorizationBearer <token>

In: header

Query Parameters

ids*array<>

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

GET
/hr/sprints/find-all
AuthorizationBearer <token>

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

GET
/hr/sprints/find-list
AuthorizationBearer <token>

In: header

Query Parameters

ids?array<>

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

GET
/hr/sprints/find/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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

GET
/hr/sprints/page
AuthorizationBearer <token>

In: header

Query Parameters

pageNumber?integer
Formatint32
pageSize?integer
Formatint32
sortBy?string
direction?string
Value in"ASC" | "DESC"
search?string

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

GET
/hr/sprints/velocity
AuthorizationBearer <token>

In: header

Query Parameters

count?integer
Default5
Formatint32

Response 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

GET
/hr/sprints/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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

PATCH
/hr/sprints/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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

DELETE
/hr/sprints/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

curl -X DELETE "http://localhost:18080/api/v1/hr/sprints/string"
Empty
{
  "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

GET
/hr/sprints/{id}/burndown
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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

POST
/hr/sprints/{id}/comment
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

body*string

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

POST
/hr/sprints/{id}/complete
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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

POST
/hr/sprints/{id}/start
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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

GET
/hr/sprints/{id}/time-report
AuthorizationBearer <token>

In: header

Path Parameters

id*string

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"
}