User and UserGroup Entity Interface

User Management

  • Using the entity interface an individual user can be created, modified or deleted.
  • To properly define a user the authenticationId have to be known. For details on authenticationId see the Authentication section
  • When updating a user you can change user groups and authentication id only, identifier is immutable.

User Group Management

  • Using the entity interface an individual user group can be created, modified or deleted.
  • User group can be nested under other user groups.
  • When updating a user group you can change parent user groups only, identifier is immutable.

Examples

To see the entire API specification, visit API reference.

Be aware of your application endpoint. For Helm Chart deployment is used the https://<organization-hostname> value. For the All-in-One docker image, the default endpoint is http://localhost:3000. In the following examples the endpoint is substituted by $ENDPOINT variable;

Create a User Group

curl --request POST \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  --header 'Content-Type: application/vnd.gooddata.api+json' \
  --data '{
      "data": {
        "attributes" : {},
        "id" : "develGroup",
        "type" : "userGroup"
      }
}' $ENDPOINT/api/entities/userGroups

Retrieve all User Group

You can retrieve all user groups via paged entities api /api/entities/userGroups. If there are more user groups, then can fit in a single page follow the next link to retrieve remaining.

curl --request GET \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  $ENDPOINT/api/entities/userGroups

To see parents (user groups) you must specify the include parameter /api/entities/userGroups?include=parents

Retrieve a User Group

curl --request GET \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  $ENDPOINT/api/entities/userGroups/develGroup

To see parents (user groups) you must specify the include parameter /api/entities/userGroups/develGroup?include=parents

Update a User Group

Assuming the adminGroup was created on bootstrap of an organization.

curl --request PUT \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  --header 'Content-Type: application/vnd.gooddata.api+json' \
  --data '{
      "data": {
        "attributes" : {},
        "id" : "develGroup",
        "type" : "userGroup",
        "relationships": {
          "parents": {
            "data": [ {
              "id": "adminGroup",
              "type": "userGroup"
            } ]
          }
        }
      }
}' $ENDPOINT/api/entities/userGroups/develGroup

Delete a User Group

curl --request DELETE \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  $ENDPOINT/api/entities/userGroups/develGroup

Create a User

Assuming the adminGroup was created on bootstrap of an organization.

curl --request POST \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  --header 'Content-Type: application/vnd.gooddata.api+json' \
  --data '{
      "data": {
        "id": "john.doe",
        "type": "user",
        "attributes": {
          "authenticationId": "<auth-id>"
        },
        "relationships": {
          "userGroups": {
            "data": [ {
              "id": "adminGroup",
              "type": "userGroup"
            } ]
          }
        }
      }
}' $ENDPOINT/api/entities/users

Retrieve all User

You can retrieve all users via paged entities api /api/entities/users. If there are more users, then can fit in a single page follow the next link to retrieve remaining.

curl --request GET \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  $ENDPOINT/api/entities/users

To see user’s user groups you must specify the include parameter /api/entities/users?include=userGroups

Retrieve a User

curl --request GET \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  $ENDPOINT/api/entities/users/john.doe

To see user’s user groups you must specify the include parameter /api/entities/users/john.doe?include=userGroups

Update a User

curl --request PUT \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  --header 'Content-Type: application/vnd.gooddata.api+json' \
  --data '{
      "data": {
        "id": "john.doe",
        "type": "user",
        "attributes": {
          "authenticationId": "<auth-id>"
        },
        "relationships": {
          "userGroups": {
            "data": [ {
              "id": "adminGroup",
              "type": "userGroup"
            } ]
          }
        }
      }
  }' $ENDPOINT/api/entities/users/john.doe

Delete a User

curl --request DELETE \
  --header "Authorization: Bearer $GDC_API_TOKEN" \
  $ENDPOINT/api/entities/users/john.doe