Skip to main content
Get Employee Maturity Overview
curl --request GET \
  --url https://{tenant_name}.{region}.techwolf.ai/reports/data_maturity_scan/employee_maturity_overview \
  --header 'Authorization: Bearer <token>'
{
  "report_name": "employee_maturity_overview",
  "report_data": {
    "entity_count": 100,
    "data_maturity_overview": [
      {
        "external_id": "a3903505-eb84-42dc-a79f-5e7b1fe897b7",
        "low_data_availability": false,
        "reasons": [
          [
            "MAX_SOURCE_GENERALITY",
            "MIN_EVENT_TYPE_DIVERSITY"
          ]
        ],
        "valid_assigned_position": true,
        "has_business_data": true,
        "sufficient_working_history": false
      }
    ]
  },
  "last_update": "2020-09-01T11:45:49Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

limit
integer
default:200

The maximal number of returned entities.

Required range: 1 <= x <= 500
Example:

250

offset
integer
default:0

The applied offset for returned entities, results starting from offset up to offset + limit.

Required range: x >= 0
include
enum<string>[]

Additional metrics to include in the response. By default, only the external_id, low_data_availability, and reasons fields are returned. Available metrics:

  • valid_assigned_position - Whether the Employee has a valid assigned position (existing Job).
  • has_business_data - Whether the Employee has business data (Ticket or Project Skill Events).
  • sufficient_working_history - Whether the Employee has at least 3 years of working history.
Available options:
valid_assigned_position,
has_business_data,
sufficient_working_history
is_active
boolean
default:None

This parameter can be used to only include entities with the active attribute set to true or false. If the parameter is not set, all entities will be included.

Example:

true

Response

OK

The Data Maturity Overview over all Employees.

report_name
string

Name of the report.

Example:

"employee_maturity_overview"

report_data
object
last_update
string<date-time>
Example:

"2020-09-01T11:45:49Z"