Skip to main content

List Tagged Objects by Type

GET 

/tagged-objects/:type

This API returns a list of all tagged objects by type.

Any authenticated token may be used to call this API.

Request

Path Parameters

    type stringrequired

    Possible values: [ACCESS_PROFILE, APPLICATION, CAMPAIGN, ENTITLEMENT, IDENTITY, ROLE, SOD_POLICY, SOURCE]

    The type of tagged object to retrieve.

    Example: ROLE

Query Parameters

    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    offset int32

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Example: true
    filters string

    Filter results using the standard syntax described in V3 API Standard Collection Parameters

    Filtering is supported for the following fields and operators:

    objectRef.id: eq

    objectRef.type: eq

    Example: objectRef.id eq "2c91808568c529c60168cca6f90c1313"

Responses

List of all tagged objects for specified type.

Schema
  • Array [
  • objectRef object
    type string

    Possible values: [ACCESS_PROFILE, APPLICATION, CAMPAIGN, ENTITLEMENT, IDENTITY, ROLE, SOD_POLICY, SOURCE]

    DTO type

    id string

    ID of the object this reference applies to

    name stringnullable

    Human-readable display name of the object this reference applies to

    tags string[]

    Labels to be applied to an Object

  • ]
Loading...