getAppOwners

Retrieves a list of application owners and their roles within the organization. Useful for managing access control and responsibility assignments.

Examples

query GetAppOwners($getAppOwnersInput: GetAppOwnersInput) {
  getAppOwners(getAppOwnersInput: $getAppOwnersInput) {
    name
    email
    roles
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "getAppOwnersInput": {
    "scanId": "c9da693d-8906-4a32-93c9-2ffdb1cebb99"
  }
}

Arguments

You can use the following argument(s) to customize your getAppOwners query.

Argument
Description
Supported fields

getAppOwnersInput GetAppOwnersInput

Parameters to filter the list of application owners, optionally by scan ID.

scanId String

Fields

Return type: [OwnerInfo]

You can use the following field(s) to specify what information your getAppOwners query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

name String

Name of the owner

email String

Email address of the owner

Roles assigned to this owner

Last updated