From 1b4fd9ad3c11ba34fb513df99ce926d283513ff2 Mon Sep 17 00:00:00 2001 From: Nagle Zhang <1247555725@qq.com> Date: Fri, 5 Jun 2020 13:42:53 +0800 Subject: [PATCH] Update team.md (#25277) document didn't metion teams can assign an orgId. --- docs/sources/http_api/team.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/sources/http_api/team.md b/docs/sources/http_api/team.md index 12b23e694d1..e62d4e75460 100644 --- a/docs/sources/http_api/team.md +++ b/docs/sources/http_api/team.md @@ -107,7 +107,7 @@ Status Codes: ## Add Team -The Team `name` needs to be unique. `name` is required and `email` is optional. +The Team `name` needs to be unique. `name` is required and `email`,`orgId` is optional. `POST /api/teams` @@ -121,7 +121,8 @@ Authorization: Basic YWRtaW46YWRtaW4= { "name": "MyTestTeam", - "email": "email@test.com" + "email": "email@test.com", + "orgId": 2 } ```