Get Links

get

/api/link/Links/

Gets the links that match the specified parameters. If no parameters are specified, all diagrams are returned.

Request

Query Parameters
  • The fields to filter the results by. You cannot filter by fields that contain a state.
    This parameter's value uses the following JSON format:
    {
    "property": "property",
    "value": "propertyValue",
    "operator": "operator",
    "conjunction": "conjunction"
    }

    If you use multiple JSON objects to combine filters, for example, to filter by several different device names, you cannot combine OR and AND conjunctions. The conjunction used for the last object applies to the entire list.
    • Default Value: OR
      Allowed Values: [ "AND", "OR" ]
      The conjunction between filters.
      Example: AND
    • Default Value: LIKE
      Allowed Values: [ "eq", "ne", "gte", "gt", "lte", "lt", "LIKE", "NOT LIKE", "re", "not re", "NOT IN" ]
      The filter operation to use.
      Example: eq
    • The name of the field to filter on.
      Example: name
    • The value of the field to filter on.
      Example: test
  • The number of records to limit results by.
    Example:
    100
  • The field and direction to sort results by. You cannot sort by fields that contain a state.
    This parameters value uses the following JSON format:
    {
    "property": "property",
    "direction": "direction"
    }
  • The page of results to start from.
    Default Value: 0
    Example:
    1

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Nested Schema : SuccessfulGetOperation
Type: object
Show Source
Nested Schema : linkLinksRead
Type: object
Show Source
  • The image used to display for the link.
    Example: fugue/address-book-open.png
  • Link ID specified for individual CRUD operations
    Example: 1004
  • The name for the link.
    Example: Unified Assurance Knowledgebase
  • The relative or absolute URL.
    Example: /vendor/mediawiki/index.php/Main_Page
  • Unique identifier for the type of link. Allowed Values: - 1 => External (the relative or absolute path separate from Unified Assurance) - 2 => Internal (the relative path to Unified Assurance UI packages) - 3 => Embedded (Embed the whole URL into the link and open the link as a side panel. This is useful if the URL has the same domain but falls outside the OUCA document root. E.g. "https:///saml/")
    Example: 1
  • Name of the link type.
    Example: External
  • Unique identifier for the user group owner of the link.
    Example: 0
  • Unique identifier for the user owner of the link.
    Example: 0
  • Viewers
    Selection of user groups that have view-only access to link.
Nested Schema : Viewers
Type: array
Selection of user groups that have view-only access to link.
Show Source
Nested Schema : items
Type: object
Show Source

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
Back to Top