Skip to main content

 Services

Web services from /about to /webhooks

get group memberdetails

/members/{member}/groups/{group}/memberdetails [GET]

Description

Get a group’s member details.

This service is used when a member does not belong to a group but wishes to join it. It returns the member detail fields (if defined for the group) that the member needs to enter when joining.

It also returns values that have been entered before by the member, if they joined previously or the details are configured to be shared across groups.​​​​​​

Parameters

NameDescriptionRequiredTypeDefault
roleIf equal to manager, display all the group-specific fields for member (group manager only)nostring

Permission

Only the member matching the request or an administrator can invoke this service, unless parameter role=manager.

The member does not require a membership to the specified group unless the role=manager is used and they are not an administrator. In that case, the member must be a manager or higher of the group.

Response

The returned XML is as follows:

<details>
  <field position="1"
         name="[name]"
         editable="[true|false]"
         visibility="[group|member|manager]"
         [title="[title]"]
         [type="[type]"]>[value]</field>
  ...
</details>

Or in JSON:

[
  {
    "position": number,
    "name": string,
    "editable": boolean,
    "title": string,
    "type": string,
    "visibility": string,
    "value": string
  }
]

Error Handling

CodeCause / Description
0x1108If the group is invalid
0x102AIf the member not found

Created on , last edited on