Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Vacation Manager's REST API provides team API which allows you to obtain:

Methods:

GET

Anchor
getTeams
getTeams

Expand
titleGet teams list

Get list of all teams.

Path

Code Block
GET {jira_baseurl}/rest/vacation-manager/1.0/team

Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR

Responses

Status
colourGreen
title200
 
Status
colourRed
title500

Example

Path
Code Block
titlePath
GET {jira_baseurl}/rest/vacation-manager/1.0/team


Request
Code Block
titleRequest
[
    {
        "id": 1,
        "name": "team 1",
        "description": "description 1"
    },
    {
        "id": 2,
        "name": "team 2",
        "description": "description 2"
    },
    {
        "id": 3,
        "name": "team 3",
        "description": "description 3"
    }
]



Anchor
getTeam
getTeam

Path
Expand
titleGet single team

Get information about existing team members.

Path

Code Block
GET {jira_baseurl}/rest/vacation-manager/1.0/team/{teamId}

Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR


Path params

Name

Type

Description

teamId

int

Team ID

Responses

Status
colourGreen
title200
 
Status
colourYellow
title404
 
Status
colourRed
title500


Example

Path
Code Block
title
GET {jira_baseurl}/rest/vacation-manager/1.0/team/1


Response
Code Block
titleResponse
{
  "id": 1,
  "name": "teamName",
  "description": "description",
  "users": [
    {
      "id": 1,
      "name": "user 1",
      "displayName": "User 1",
      "active": true
    },
    {
      "id": 2,
      "name": "user 2",
      "displayName": "User 2",
      "active": true
    },
    {
      "id": 3,
      "name": "user 3",
      "displayName": "User 3",
      "active": true
    }
  ],
  "supervisors": [
    {
      "id": 4,
      "name": "supervisor 1",
      "displayName": "Supervisor 1",
      "active": true
    }
  ]
}



Anchor
getTeamMember
getTeamMember

POST 

Anchor
createTeam
createTeam

Expand
titleCreate team

Creates new team.

Path

Code Block
POST {jira_baseurl}/rest/vacation-manager/1.0/team

Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR


JSON body fields

Name

Type

Description

name

String

Team name, must be unique for each team

description

String (Optional)

Team description

Responses

Status
colourGreen
title201
 
Status
colourYellow
title400
 
Status
colourRed
title500

Example

Path
Path
Code Block
title
POST {jira_baseurl}/rest/vacation-manager/1.0/team


Body
Body
Code Block
title
{
    "name": "Team name",
    "description": "Team Description"
}


Response
Code Block
titleResponse
{
	"id": 
    "name": "Team name",
    "description": "Team Description"
}



...

Expand
titleAdd member to team

Add member to team.

Path

Code Block
POST {jira_baseurl}/rest/vacation-manager/1.0/team/{teamId}/member


Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR

Path params

Name

Type

Description

teamId

int

Team id


JSON body fields

Name

Type

Description

type

MemberType

Type of member

name

String

Name of the member you want to add to the team

role

MemberRole

Role for member

MemberType

Name

Type

Description

USER

Enum

User type

GROUP

Enum

Group type

MemberRole

Name

Type

Description

USER

Enum

User role for member

SUPERVISOR

Enum

Supervisor role for member

Responses

Status
colourGreen
title201
 
Status
colourYellow
title400
 
Status
colourYellow
title404
 
Status
colourRed
title500

Example

Path
Path
Code Block
title
POST {jira_baseurl}/rest/vacation-manager/1.0/team/1/member

Add user to team

Body
Code Block
titleBody
{
	"type":"USER",
	"name":"user 1",
	"role":"USER"
}


Response
Code Block
titleResponse
{
    "id": 1,
    "userId": 10000,
    "role": "USER",
    "teamId": 1
}


Add group to team

Body
Code Block
titleBody
{
	"type":"GROUP",
	"name":"users",
	"role":"USER"
}


Response
Response
Code Block
title
{
    "id": 6,
    "groupName": "users",
    "role": "USER",
    "teamId": 1
}


PATCH

Anchor
updateTeam
updateTeam

Expand
titleUpdate team

Update existing team.

Path

Code Block
PATCH {jira_baseurl}/rest/vacation-manager/1.0/team/{teamId}

Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR


Path params

Name

Type

Description

teamId

int

Team ID


JSON body fields

Name

Type

Description

name

String

Team name, must be unique

description

String (Optional)

Team description

Responses

Status
colourGreen
title200
 
Status
colourYellow
title400
 
Status
colourYellow
title404
 
Status
colourRed
title500

Example

Path
Code Block
titlePath
PATCH {jira_baseurl}/rest/vacation-manager/1.0/team/1


Body
Code Block
titleBody
{
    "name": "new team name"
}


Request
Request
Code Block
title
{
    "id": 1,
    "name": "new team name",
    "description": "Team Description"
}




DELETE

Anchor
deleteTeam
deleteTeam

Expand
titleDelete team

Delete existing team.

Path

Code Block
DELETE {jira_baseurl}/rest/vacation-manager/1.0/team/{teamId}

Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR

Path params

Name

Type

Description

teamId

int

Team ID

Responses

Status
colourGreen
title204
 
Status
colourYellow
title404
 
Status
colourRed
title500

Example

Request
Request
Code Block
title
DELETE {jira_baseurl}/rest/vacation-manager/1.0/team/1



...

Expand
titleRemove member from team

Remove member from team.

Path

Code Block
DELETE {jira_baseurl}/rest/vacation-manager/1.0/team/{teamId}/member

Permissions

Status
colourGreen
titleADMIN
 
Status
colourRed
titleUSER
 
Status
colourRed
titleSUPERVISOR
 
Status
colourGreen
titleHR

Path params

Name

Type

Description

teamId

int

Team ID

JSON body fields

Name

Type

Description

type

String

Type of member to remove

  • USER

  • GROUP

name

String

Name of the member you want to remove from the team

role

String

Role for member to remove

  • USER

  • SUPERVISOR

Responses

Status
colourGreen
title204
 
Status
colourYellow
title404
 
Status
colourRed
title500

Example

Path
Path
Code Block
title
DELETE {jira_baseurl}/rest/vacation-manager/1.0/team/1/member


Body
Body
Code Block
title
{
	"type":"GROUP",
	"name":"users",
	"role":"USER"
}




...