lianja / MongoDB Atlas / Update Team Roles in One Project
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
loHttp.DigestAuth = .T.
loHttp.Login = "username"
loHttp.Password = "password"
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "roleNames": [
// "GROUP_OWNER"
// ]
// }
loJson = createobject("CkJsonObject")
loJson.UpdateString("roleNames[0]","GROUP_OWNER")
loSbRequestBody = createobject("CkStringBuilder")
loJson.EmitSb(loSbRequestBody)
loResp = loHttp.PTextSb("PATCH","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/teams/{{TEAM-ID}}",loSbRequestBody,"utf-8","application/json",.F.,.F.)
if (loHttp.LastMethodSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loJson
release loSbRequestBody
return
endif
? str(loResp.StatusCode)
? loResp.BodyStr
release loResp
release loHttp
release loJson
release loSbRequestBody
Curl Command
curl -X PATCH
--digest -u 'username:password'
-d '{
"roleNames": ["GROUP_OWNER"]
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/teams/{{TEAM-ID}}
Postman Collection Item JSON
{
"name": "Update Team Roles in One Project",
"request": {
"method": "PATCH",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"roleNames\": [\"GROUP_OWNER\"]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/teams/{{TEAM-ID}}",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"teams",
"{{TEAM-ID}}"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/teams-update-roles/"
},
"response": [
]
}