Search for monitoring credentials

post

https://EM_HOST:EM_CONSOLE_HTTPS_PORT/em/api/namedCredentials/actions/searchMonitoringCredential

Searches for matching monitoring credentials based on the filters provided in the request payload.

Request

Query Parameters
  • whether total number of results shall be returned.
    Example:
    true
  • Minimum Value: 1
    Maximum Value: 2000
    Number of Monitoring credentials to be fetched
    Default Value: 20
    Example:
    20
  • system generated page token used in the self, next and previous links.
  • the order of the result set with direction. Allowed sort fields are targetTypeName, setName. Allowed directions are ASC and DESC. To sort more than one field, provide comma separated values like field1:direction1,field2:direction2
    Example:
    type:ASC,name:DESC
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Schema object to hold Monitoring Credential search payload
Show Source
Nested Schema : setName
Type: array
credential set name
Show Source
Nested Schema : setNameContains
Type: array
Preferred credential set name pattern to be filtered. Case sensitive.
Show Source
Nested Schema : targetName
Type: array
target name of monitoring credential
Show Source
Nested Schema : targetNameContains
Type: array
Monitoring credetnail target name to be filtered
Show Source
Nested Schema : targetTypeName
Type: array
targetType of monitoring credential
Show Source
Nested Schema : targetTypeNameContains
Type: array
target type name to be filtered
Show Source
Examples

Back to Top

Response

Supported Media Types

200 Response

List of monitoring credentials returned successfully
Body ()
Root Schema : MonitoringCredentialCollection
Type: object
This is the representation of list of monitoring credentials.
Show Source
Nested Schema : items
Type: array
the Preferred credentials list
Show Source
Nested Schema : MonitoringCredential
Type: object
A monitoring credential is used to describe which credential set and attributes is used to access a target.
Show Source
Nested Schema : attributes
Type: array
Additional Properties Allowed
Show Source
the attributes of the credential
Show Source
Example:
[
    {
        "name":"UserName",
        "value":"MyUserName"
    },
    {
        "name":"Password",
        "value":"MyPassword"
    }
]
Nested Schema : NameValuePair
Type: object
A pair of name and value.
Show Source
Examples

Back to Top