Skip to content

Listar matriculas

GET
/v1/groups/{groupId}/enrollments

Listar matriculas do grupo especificado

Autorizações

Bearer

Generate a token

TipoHTTP (bearer)

Parâmetros

Parâmetros de Cabeçalho

community-id*

Identificador da comunidade

Tipostring
Obrigatório
Exemplo"test"

Parâmetros de Caminho

groupId*

Identificador do grupo.

Tipostring
Obrigatório

Respostas

OK

application/json
JSON
[
{
"id": "string",
"createdAt": "2020-01-01T00:00:00.000Z",
"updatedAt": "2020-01-01T00:00:00.000Z",
"community": "test",
"kind": "member",
"entity": {
"_id": "12345678",
"createdAt": "2020-01-01T00:00:00.000Z",
"updatedAt": "2020-01-01T00:00:00.000Z",
"active": true,
"community": "test",
"access": [
{
"permissions": [
"guardian"
],
"user": "string"
}
],
"name": "Gabriel Raniere",
"alias": "abc123d",
"birth": "2010-04-10T00:00:00.000Z"
},
"group": "string",
"active": true
}
]

Exemplos

cURL
JavaScript
PHP
Python