Data Job Status
Track and monitor the status of data ingestion and processing jobs across your cloud cost data pipeline.
Retrieve all available job status values from the JobStatus enum.
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a list of all job statuses
GET /gateway/ccm/api/data-job-status/job-statuses HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve distinct billing periods for a connector and job kind in YYYY-MM format, sorted in descending order.
Account Identifier for the Entity.
Connector identifier
Job kind (INGESTION, PDT, INVENTORY, OTHER)
Azure cost type filter (ACTUAL, AMORTIZED)
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a list of distinct billing periods (e.g., 2026-03)
GET /gateway/ccm/api/data-job-status/history/billing-periods?accountIdentifier=text&connectorId=text&jobKind=INGESTION HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve distinct execution months for a connector and job kind in YYYY-MM format, sorted in descending order.
Account Identifier for the Entity.
Connector identifier
Job kind (INGESTION, PDT, INVENTORY, OTHER)
Azure cost type filter (ACTUAL, AMORTIZED)
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a list of distinct execution months (e.g., 2026-03)
GET /gateway/ccm/api/data-job-status/history/execution-months?accountIdentifier=text&connectorId=text&jobKind=INGESTION HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve distinct job kind values available for the account.
Account Identifier for the Entity.
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a list of distinct job kinds
GET /gateway/ccm/api/data-job-status/job-kinds?accountIdentifier=text HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve the execution history details filtered by connector, job kind, billing period, and execution month. Returns all history records sorted by execution date in descending order.
Account Identifier for the Entity.
Connector identifier
Job kind (INGESTION, PDT, INVENTORY, OTHER)
Billing period month filter (format: YYYY-MM, e.g., 2026-04)
Execution month filter (format: YYYY-MM, e.g., 2026-05)
Azure cost type filter (ACTUAL, AMORTIZED)
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a list of DataJobHistoryDTO objects representing execution history details
GET /gateway/ccm/api/data-job-status/history?accountIdentifier=text&connectorId=text&jobKind=INGESTION&executionMonth=text HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve the details for a specific data job with the latest billing period. Returns the most recent execution attempt with detailed state transitions, timestamps, and execution metadata. Useful for debugging, auditing, and analyzing job performance.
Unique identifier of the data job
Account Identifier for the Entity.
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a DataJobHistoryDTO object representing the latest execution attempt for the specified job ID based on billing period start date
GET /gateway/ccm/api/data-job-status/details/{jobId}?accountIdentifier=text HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve dashboard statistics for data jobs including active jobs count, jobs requiring attention, and completed jobs today with average duration. Provides a high-level overview of the data pipeline health and performance.
Account Identifier for the Entity.
Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns dashboard statistics including active jobs, jobs requiring attention, and completed jobs today
GET /gateway/ccm/api/data-job-status/overview?accountIdentifier=text HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Accept: */*
{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Retrieve a paginated list of data jobs with optional filters including connector, job kind, status, and date range.
Account Identifier for the Entity.
Filter criteria for data jobs
Connector Name
Job Identifier
Job kind filter
Job status filter
Page number (0-indexed)
0Page size (max 100)
20Bad Request
This is Failure entity as defied in Harness
Internal server error
Returns a paginated list of data jobs matching the filter criteria
POST /gateway/ccm/api/data-job-status/list?accountIdentifier=text HTTP/1.1
Host: nextgen-ce-d788d786-ssnpc
Content-Type: application/json
Accept: */*
Content-Length: 98
{
"connectorName": "text",
"jobId": "text",
"jobKind": "INGESTION",
"status": "QUEUED",
"page": 0,
"size": 20
}{
"status": "SUCCESS",
"code": "DEFAULT_ERROR_CODE",
"message": "text",
"correlationId": "text",
"errors": [
{
"fieldId": "text",
"error": "text"
}
]
}Last updated
Was this helpful?