Summary
          Gets a page of job documents, bypassing GBAC.
          Description
          Gets a page of job documents, bypassing GBAC.
          Route
          GET /operations-manager/admin/jobs
          Roles
          
            admin
engineering
apiread
operations
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | queryParameters | object | yes | Parameters for filtering, paginating, projecting, and sorting job documents. | 
            
          
          
            Copied to Clipboard
            
            {
  "queryParameters": {
    "limit": 25,
    "skip": 1,
    "order": 1,
    "sort": "name",
    "include": "name",
    "exclude": "description",
    "in": "amet voluptate sed in",
    "not-in": "anim sint Duis reprehenderit",
    "equals": "magna occaecat",
    "contains": "adipisicing deserunt mollit",
    "starts-with": "proident id elit",
    "ends-with": "et proident",
    "dereference": "enim occaecat ut dolore",
    "gt": "id tempor proident sint",
    "gte": "dolore ipsum labore",
    "lt": "dolore ex labore in",
    "lte": "consectetur Duis sed tempor",
    "q": "incididunt in ut deserunt in"
  }
}
           
          
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Results for the given search parameters. | 
            
          
          
            Copied to Clipboard
            
            {
  "result": true
}
           
          
            Copied to Clipboard
            
            {
  "title": "result",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "job-api"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of documents matching the given query parameters."
    },
    "currentPageSize": {
      "type": "integer",
      "description": "Total number of documents returned in the items array."
    },
    "hints": {
      "type": "array",
      "description": "List of messages containing helpful context-sensitive information",
      "items": {
        "type": "string"
      }
    },
    "skip": {
      "type": "integer",
      "description": "Current skip value."
    },
    "limit": {
      "type": "integer",
      "description": "Current limit value."
    },
    "nextPageSkip": {
      "type": "integer",
      "description": "Value to use for skip to get next page of results."
    },
    "previousPageSkip": {
      "type": "integer",
      "description": "Value to use for skip to get previous page of results."
    }
  }
}