Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  1. Fotoware Alto
    • 11.14 Schreckhorn
    • Terminology
    • Solutions
    • User Guide - Deutsch
    • User Guide - English
    • API Changelog
  2. Fotoware Veloz
    • Managing users and groups
    • Configuring archives
    • Configuring workflows
    • Configuring site behavior
    • Navigating and searching to find your assets
    • Working with your assets
    • Editing asset metadata
    • Uploading files
    • Version Control in Fotoware
    • Albums - Creating and sharing collections
    • Placing assets in a CMS
    • Working with the Fotoware Pro interface
    • Using the Fotoware plugins
    • Consent management
    • User guide to FotoWeb for iPad (Legacy)
    • Picture conferencing with FotoWeb Screens (Legacy)
    • What's what in Fotoware
    • GDPR
    • Fotoware Veloz releases
    • Activity Exports
    • Fotoware Example Workflows
  3. Fotostation
    • Getting started with Fotostation
    • Viewing, selecting and sorting files
    • Managing your assets with archives
    • Adding metadata to assets
    • Searching for assets
    • Working with your assets
    • Version Control in Fotostation
    • Automating tasks with Actions
    • Configuring metadata fields and editors
    • Configuring Fotostation
    • Configuring Fotostation for multi-user environments
    • Troubleshooting Fotostation
  4. Fotoware Flow
    • What is Flow?
    • Getting started
    • Flow dictionary
  5. Fotoware On-Premises
    • Getting started
    • Index Manager
    • FotoWeb
    • Color Factory
    • Connect
    • Operations Center Guide
  6. Integrations and APIs
    • The Fotoware API
    • Creating integrations using embeddable widgets
    • Authorizing applications using OAuth
    • Auto-tagging
    • FotoWeb Drag and Drop export
    • Integration using webhooks
    • Optimizely and Episerver plugin documentation
    • User Interface Integrations
  7. Fotoware Mobile
    • User guide for Fotoware Mobile for iPhone and Android
    • User guide to FotoWeb for iPad (Legacy)
    • User guide to FotoWeb for iPhone and Android (Legacy)

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Support

Table of Contents

MIME Type Part of ... Example Attributes Methods GET PATCH DELETE Remarks
  • Home
  • Integrations and APIs
  • The Fotoware API
  • Users and Groups

Group Representation

This article describes the JSON format that represents a group in the Users and Groups API.

12. May 2025

Elaine Foley

Table of Contents

MIME Type Part of ... Example Attributes Methods GET PATCH DELETE Remarks

MIME Type 

application/vnd.fotoware.group+json

Part of ... 

  • GroupList

Example 

01

02

03

04

05

06

07

08

09

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

{

href: "/fotoweb/groups/Employees",

name: Employees",

description: "..."

created: "2015-09-01T11:04:00Z",

modified: "2015-09-01T11:04:00Z",

externalIDs: [

{provider: "PROVIDER1", id: "ID1"},

{provider: "PROVIDER2", id: "ID2"},

...

],

license: {

defaultLevel: "standard|plus|pro",

defaultConcurrencyMode: "named|concurrent"

},

permissions: {

isAdministrator: true | false,

albums: {

create: true | false,

shareWithGroups: true | false,

shareWithUsers: true | false,

restrictToFriends: true | false,

shareWithGuests: true | false,

delegateDownloads: true | false,

showOnHomepage: true | false,

comment: true | false

},

uploadArea: true | false,

api: true | false,

manageTaxonomies: true | false

},

members: "/fotoweb/groups/Employees/members/",

propertyBag: [

{key: "KEY1", value: "VALUE1"},

{key: "KEY2", value: "VALUE2"},

...

],

memberships: [

{group: {"/fotoweb/groups/Sales", ...}, direct: true},

{group: {"/fotoweb/groups/Employees", ...}, direct: false},

...

]

}

Attributes 

Name Type Description
href

URL (string)

Links to Group

URL of the group resource. This URL can be used for requesting the group representation of the group, for updating or deleting the group, for specifying groups to add a new user to.
name string Unique name of the group.
description string Description of the group. This is a free-form, human-readable string.
created date (string) Date and time when group was created
modified date (string) Date and time when group was last modified (identical to created if group was never modified; never null)
externalIDs array of objects IDs of this group in external systems linked to FotoWeb through custom authentication providers. Each group can be linked to exactly one ID per distinct authentication provider.
externalIDs.provider string ID of the authentication provider
externalIDs.id string ID of the user in the external system. For example, this could be an ActiveDirectory security identifier.
license object Default license to apply to users that are added to this group through self-registration or custom authentication providers.
license.defaultLevel string

Default license level for users of the group. Can be "standard", "plus" or "pro".

For more information, see User Types.

license.defaultConcurrencyMode string

Default license concurrency mode for users of the group. Can be one of the following:

"named": The user is licensed as a named user and can always access FotoWeb.

"concurrent": The user is licensed as a concurrent user and can access FotoWeb only if there are no more concurrent users of the same type accessing the system as the system has been licensed for.

permissions.isAdministrator bool Every user in this group is an administrator.
permissions.albums.create bool Every user in this group can create albums.
permissions.albums.shareWithGroups bool Every user in this group can share albums with groups.
permissions.albums.shareWithUsers bool Every user in this group can share albums with users.
permissions.albums.restrictToFriends bool Every user in this group can share albums only with users within the same groups or with groups that the user is a member of.
permissions.albums.shareWithGuests bool Every user in this group can share albums with guests.
permissions.albums.delegateDownloads bool Every user in this group can give download permissions when sharing albums.
permissions.albums.showOnHomepage bool Every user in this group can share albums on the home page.
permissions.albums.comment bool Every user in this group can comment on albums.
permissions.uploadArea bool Every user in this group has an individual upload area.
permissions.api bool Every user in this group has access to the API.
permissions.manageTaxonomies bool Every user in this group has write access to taxonomies.
members

URL (string),

links to MemberList, UserList and GroupList.

Link to the member list of the group. This URL accepts all requests of a Member List representation, i.e., it can be used for reading the users and groups which are members of this group and for adding and removing members.
propertyBag array of objects List of custom attributes assigned to the group. Each attribute is a free-form key/value pair.
propertyBag.key string Key of the attribute. Must be unique within the property bag of the group.
propertyBag.value string Value of the attribute. This is a free-form string.
memberships array of objects List of groups that the user is directly or indirectly a member of
memberships.group object (Group) Complete information about the group
memberships.direct bool true if the user is a direct member of the group, false otherwise

Methods 

The following HTTP verbs are allowed on groups:

GET 

GET url
Accept: application/vnd.fotoware.group+json

Read group information. Returns the representation described above.

PATCH 

PATCH url
Content-Type: application/vnd.fotoware.group+json
{...}

Update group information. Accepts the representation described above, but fields can be omitted. Fields that are defined in the request body will not be modified. Some fields MUST NOT be defined. See the Remarks section for details.

If successful, the server sends one of the following responses:

204 No Content

if the name was not changed or

201 Created
Location: new_url

if the name was changed. Then, new_url is the new URL of the group, and the old URL is no longer valid and will return 404.

DELETE 

DELETE url

Deletes the group.

If successful, the server sends the following response:

204 No Content

The URL of the group is no longer valid and will return 404.

Remarks 

In a request to create a new group or update an existing group, the following fields cannot be set explicitly and MUST NOT be defined in the request body:

  • href
  • created
  • modfied
  • members
  • memberships.direct (not allowed when creating a user; only direct memberships can be specified)
  • memberships (not allowed when updating a user; memberships cannot be changed in a user update request)

Adding and removing users to and from groups is done by making requests to the user list representation whose URL is given by the members attribute of the group representation.

collective portrayal team depiction

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • Roles
  • Role Permissions (User Rights)
  • Permission Sets
eco-lighthouse-miljøfyrtårn

Company

  • About us
  • Resellers
  • Careers
  • Contact us

Help & support

  • Support center
  • Consultancy
  • Tech partners
  • Fotostation
  • System status

Trust Center

  • Legal
  • Security
  • Sustainability & ESG

Locations

Fotoware AS (HQ)
Tollbugata 35
0157 OSLO
Norway
FotoWare Switzerland AG
Industriestrasse 25
5033 Buchs (AG)
Switzerland

Copyright 2025 Fotoware All rights reserved.

  • Terms of service
  • Privacy policy
  • Cookie policy

Knowledge Base Software powered by Helpjuice

Expand