Get all study users' details

get

/ec-auth-svc/rest/v1.0/authstudies/{StudyID}/users/detail

Retrieve a detailed list of user assignments for the given study. This includes all study access fields and full expansion of roles, sites, depots, email, and phone information

Request

Path Parameters
  • Unique identifier for the study. Must be a 32-character uppercase hexadecimal UUID.
    Example:
    2A56BCED9A09442B8E3082DCF0F3A229
Query Parameters
  • Optional study access mode to filter users (e.g., "design").
    Example:
    design

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Detailed user list for the specified study.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : DisplayStudyUserDtoV2
Type: object
Version 2: Extends DisplayStudyUserDto to include user email and phone information.
Show Source
Example:
{
    "id":"7DC8B36EA5C04E1F9D11C0E5F3FFF789",
    "firstName":"Jane",
    "lastName":"Smith",
    "userName":"jsmith",
    "lastAccess":"2023-12-19T12:42:11.000Z",
    "effectiveStart":"2021-06-11T10:00:00.000Z",
    "effectiveEnd":"2025-09-21T10:00:00.000Z",
    "roles":[
        "Site User",
        "Rule Designer"
    ],
    "sites":{
        "allSites":false,
        "associatedSites":[
            "7DC8B36EA5C04E1F9D11C0E5F3FFF780",
            "6DC8B36EA5C04E1F9D11C0E5F3FFF789"
        ]
    },
    "depots":{
        "allDepots":false,
        "associatedDepots":[
            "7DC8B36EA5W04E1F9D11C0E5F3FFF789"
        ]
    },
    "email":"studyuser@example.com",
    "phone":"+1-222-333-4444"
}
Nested Schema : DisplayDepotNamesListDto
Type: object
Represents a set of depot access information for the user within a study, including all-depots flag and associated depot names.
Show Source
Example:
{
    "allDepots":false,
    "associatedDepots":[
        "DepotA"
    ]
}
Nested Schema : roles
Type: array
Roles assigned to the user within the study.
Show Source
  • Roles assigned to the user within the study.
    Example: ["Rule Designer","Site User"]
Example:
[
    "Rule Designer",
    "Site User"
]
Nested Schema : DisplaySiteNamesListDto
Type: object
Represents a set of site access information for the user within a study, including all-sites flag and associated site names.
Show Source
Example:
{
    "allSites":false,
    "associatedSites":[
        "SiteA",
        "SiteB"
    ]
}
Nested Schema : associatedDepots
Type: array
List of associated depot names for the user.
Show Source
Example:
[
    "DepotA"
]
Nested Schema : associatedSites
Type: array
List of associated site names for the user.
Show Source
  • List of associated site names for the user.
    Example: ["SiteA","SiteB"]
Example:
[
    "SiteA",
    "SiteB"
]
Examples

400 Response

Bad request.
Body ()
Root Schema : AuthResponse
Type: object
Generic API response wrapper containing result, error data, response version and status.
Show Source
Nested Schema : ErrorResponseData
Type: object
Structure representing an error response from the reporting service. Contains an error code, human-readable message, and details.
Show Source
  • Detailed error context or debugging information such as validation error, stack trace, or field/parameter cause.
    Example: User role is missing required permission REPORTING_VIEW. Field: userId
  • Application or business-specific error code representing the error type.
    Example: REPT_401
  • Human-readable error message describing the failure or issue.
    Example: Unauthorized: User does not have access to the requested resource
Nested Schema : result
Type: object
Result data of the API response; actual type depends on the API
Example:
oracle.doceng.json.BetterJsonNull@3565a0f5
Back to Top