Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions config/_default/menus/api.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11394,6 +11394,54 @@ menu:
unstable:
- v2
order: 18
- name: Get a team hierarchy link
url: '#get-a-team-hierarchy-link'
identifier: teams-get-a-team-hierarchy-link
parent: teams
generated: true
params:
versions:
- v2
operationids:
- GetTeamHierarchyLink
unstable: []
order: 21
- name: Remove a team hierarchy link
url: '#remove-a-team-hierarchy-link'
identifier: teams-remove-a-team-hierarchy-link
parent: teams
generated: true
params:
versions:
- v2
operationids:
- RemoveTeamHierarchyLink
unstable: []
order: 23
- name: Create a team hierarchy link
url: '#create-a-team-hierarchy-link'
identifier: teams-create-a-team-hierarchy-link
parent: teams
generated: true
params:
versions:
- v2
operationids:
- AddTeamHierarchyLink
unstable: []
order: 22
- name: Get team hierarchy links
url: '#get-team-hierarchy-links'
identifier: teams-get-team-hierarchy-links
parent: teams
generated: true
params:
versions:
- v2
operationids:
- GetTeamHierarchyLinks
unstable: []
order: 20
- name: Create a team
url: '#create-a-team'
identifier: teams-create-a-team
Expand Down
416 changes: 407 additions & 9 deletions content/en/api/v2/teams/examples.json

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions content/en/api/v2/teams/request.AddTeamHierarchyLink.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"data": {
"relationships": {
"parent_team": {
"data": {
"id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
"type": "team"
}
},
"sub_team": {
"data": {
"id": "7c47c39d-7740-6408-d686-7870a744701c",
"type": "team"
}
}
},
"type": "team_hierarchy_links"
}
}
7 changes: 7 additions & 0 deletions data/api/v2/CodeExamples.json
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,13 @@
"description": "Save new value for on-demand concurrency cap returns \"OK\" response"
}
],
"AddTeamHierarchyLink": [
{
"group": "teams",
"suffix": "",
"description": "Create a team hierarchy link returns \"OK\" response"
}
],
"CreateTeamLink": [
{
"group": "teams",
Expand Down
Loading
Loading