List Groups

HTTP Request Method

GET

URI

https://hs-identity-api.oracleindustry.com/scim/v1/<tenant>/Groups

Request schema URI

NA

Response schema URI

urn:scim:schemas:core:2.0:ListResponse

HTTP Response Codes

The following response codes apply:

  • 200
  • 401
  • 403
  • 404

For more information, see Return Codes.

Sample Message Exchange

Request

GET /scim/v1/mypharma/Groups HTTP 1.1
Host: example.com
Authorization: Basic Y3VzdG9tZXIuYWRtaW51c2VyOnBhc3N3b3Jk=
Accept: application/json

Response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: ...
{
    "schemas" : [
        "urn:scim:schemas:core:2.0:ListResponse"
    ],
    "totalResults" : 3,
    "Resources" : [
        {
            "id" : "mypharma.lshdme"
        },
        {
            "id" : "mypharma.pfst50"
        },
        {
            "id" : "mypharma.argussafety"
        }
    ]
}