Get Last Job Summary of Tenant Connectors

GET /connectors/v1.0/org/azure/last-job-summary/{organizationConnectorId}

An API endpoint to get the last job summary of Azure tenant connector.

Sample: Get Last Job SummarySample: Get Last Job Summary

API request

curl --location 'https://<QualysGatewayURL>/connectors/v1.0/org/azure/last-job-summary/xxxxxx     
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
      

Response

      {
      
    "currentPage": 0,
      
    "currentPageSize": 1,
      
    "totalPages": 1,
      
    "numberOfElements": 1,
      
    "content": [
      
        {
      
            "type": null,
      
            "errorMsg": "An exception occurred while running Org Connector. Contact support to resolve the issue.",
      
            "created": "2023-05-08T05:43:57.000+00:00"
      
        }
      
    ],
      
    "hasContent": true,
      
    "hasNext": false,
      
    "hasPrevious": false,
      
    "first": true,
      
    "last": true
      
}