Get All User Groups for a User
get
/rest/v19/users/{partyNumber}/groups
Use this endpoint to retrieve all user groups for a given user.
Request
Path Parameters
-
partyNumber(required): string
Party Number of the user.
Query Parameters
-
excludeLinks: string
Exclude given link types from response
-
fields: string
Group fields expected in response
-
filter: string
Returns response filtered on criteria passed as value of this param
-
limit: integer
Maximum number of records expected in response
-
offset: integer
Index of record with which response should start with
-
orderby: string
Orders response based on field/fields passed as value of this param. Direction can be passed separated by ':'. Default Direction is Ascending(ASC).
-
totalResults: boolean
True if total number of results of query are expected in response, else false
Response
Supported Media Types
- application/json
Default Response
Groups details.
Root Schema : Groups
Type:
objectTitle:
GroupsGroups to which the user belongs
Show Source
-
items:
array items
-
links:
array Links to the related objects
Title:
Links to the related objectsLinks to the related objects
Nested Schema : items
Type:
Show Source
array-
Array of:
object Group
Title:
GroupUser group information
Nested Schema : Links to the related objects
Type:
arrayTitle:
Links to the related objectsLinks to the related objects
Show Source
-
Array of:
object reference links
Title:
reference linksReference links for the Parent, Self, Children and Related as applicable
Nested Schema : Group
Type:
objectTitle:
GroupUser group information
Show Source
-
label:
string
Title:
Group NameGroup name -
type:
string
Title:
Group TypeType of the group -
variableName:
string
Title:
Group Variable NameVariable name of the group
Nested Schema : reference links
Type:
objectTitle:
reference linksReference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
URL to the related objectURL to the related object -
rel:
string
Title:
Link Relationship to the current objectLink Relationship to the current object
Examples
The following example returns all groups assigned to specified user by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/users/935719302534024740/groups
Response Body Sample
{
"items": [
{
"label": "100k Parts",
"variableName": "a100kparts",
"type": "Sales"
},
{
"label": "Admin Access- Groups",
"variableName": "adminAccessGroupsOnly",
"type": "Administrator"
}
],
"links": [
{
"rel": "self",
"href": "http://sitename.oracle.com/rest/v19/companies/phoenix60388/users/PROJECT_CREATOR_SERVICES/groups"
},
{
"rel": "parent",
"href": "http://sitename.oracle.com/rest/v19/companies/phoenix60388/users/PROJECT_CREATOR_SERVICES"
}
]
}