2018-10-31 12:01:30 -05:00
|
|
|
+++
|
|
|
|
title = "External Group Sync HTTP API "
|
|
|
|
description = "Grafana External Group Sync HTTP API"
|
|
|
|
keywords = ["grafana", "http", "documentation", "api", "team", "teams", "group", "member", "enterprise"]
|
2019-12-30 01:17:03 -06:00
|
|
|
aliases = ["/docs/grafana/latest/http_api/external_group_sync/"]
|
2018-10-31 12:01:30 -05:00
|
|
|
type = "docs"
|
|
|
|
[menu.docs]
|
|
|
|
name = "External Group Sync"
|
|
|
|
parent = "http_api"
|
|
|
|
+++
|
|
|
|
|
|
|
|
# External Group Synchronization API
|
|
|
|
|
2019-12-05 06:09:57 -06:00
|
|
|
> External Group Synchronization is only available in Grafana Enterprise. Read more about [Grafana Enterprise]({{< relref "../enterprise" >}}).
|
2018-10-31 12:01:30 -05:00
|
|
|
|
|
|
|
## Get External Groups
|
|
|
|
|
|
|
|
`GET /api/teams/:teamId/groups`
|
|
|
|
|
|
|
|
**Example Request**:
|
|
|
|
|
|
|
|
```http
|
|
|
|
GET /api/teams/1/groups HTTP/1.1
|
|
|
|
Accept: application/json
|
|
|
|
Content-Type: application/json
|
|
|
|
Authorization: Basic YWRtaW46YWRtaW4=
|
|
|
|
```
|
|
|
|
|
|
|
|
**Example Response**:
|
|
|
|
|
|
|
|
```http
|
|
|
|
HTTP/1.1 200
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"orgId": 1,
|
|
|
|
"teamId": 1,
|
|
|
|
"groupId": "cn=editors,ou=groups,dc=grafana,dc=org"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Status Codes:
|
|
|
|
|
|
|
|
- **200** - Ok
|
|
|
|
- **401** - Unauthorized
|
|
|
|
- **403** - Permission denied
|
|
|
|
|
|
|
|
## Add External Group
|
|
|
|
|
|
|
|
`POST /api/teams/:teamId/groups`
|
|
|
|
|
|
|
|
**Example Request**:
|
|
|
|
|
|
|
|
```http
|
|
|
|
POST /api/teams/1/members HTTP/1.1
|
|
|
|
Accept: application/json
|
|
|
|
Content-Type: application/json
|
|
|
|
Authorization: Basic YWRtaW46YWRtaW4=
|
|
|
|
|
|
|
|
{
|
|
|
|
"groupId": "cn=editors,ou=groups,dc=grafana,dc=org"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Example Response**:
|
|
|
|
|
|
|
|
```http
|
|
|
|
HTTP/1.1 200
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"message":"Group added to Team"}
|
|
|
|
```
|
|
|
|
|
|
|
|
Status Codes:
|
|
|
|
|
|
|
|
- **200** - Ok
|
|
|
|
- **400** - Group is already added to this team
|
|
|
|
- **401** - Unauthorized
|
|
|
|
- **403** - Permission denied
|
|
|
|
- **404** - Team not found
|
|
|
|
|
|
|
|
## Remove External Group
|
|
|
|
|
|
|
|
`DELETE /api/teams/:teamId/groups/:groupId`
|
|
|
|
|
|
|
|
**Example Request**:
|
|
|
|
|
|
|
|
```http
|
|
|
|
DELETE /api/teams/1/groups/cn=editors,ou=groups,dc=grafana,dc=org HTTP/1.1
|
|
|
|
Accept: application/json
|
|
|
|
Content-Type: application/json
|
|
|
|
Authorization: Basic YWRtaW46YWRtaW4=
|
|
|
|
```
|
|
|
|
|
|
|
|
**Example Response**:
|
|
|
|
|
|
|
|
```http
|
|
|
|
HTTP/1.1 200
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{"message":"Team Group removed"}
|
|
|
|
```
|
|
|
|
|
|
|
|
Status Codes:
|
|
|
|
|
|
|
|
- **200** - Ok
|
|
|
|
- **401** - Unauthorized
|
|
|
|
- **403** - Permission denied
|
|
|
|
- **404** - Team not found/Group not found
|