This endpoint returns structured Skill Category objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the skill_categories top-level JSON key. Please see our Response Format section for more information.
GET
curl -i -X GET \
'https://api.mavenlink.com/api/v1/skill_categories?include=string&matching=string&only=string&order=alphabetical%3Aasc&page=1&per_page=20'Response
{ "count": 0, "meta": { "count": 0, "page_count": 0, "page_number": 0, "page_size": 0 }, "results": [ { "key": "string", "id": "string" } ], "skill_categories": { "property1": { "name": "string", "skill_ids": [ "string" ] }, "property2": { "name": "string", "skill_ids": [ "string" ] } }, "skills": { "property1": { "created_at": "2019-08-24T14:15:22Z", "description": "string", "external_reference_ids": [ "string" ], "max_level": "string", "name": "string", "skill_category_id": "string", "updated_at": "2019-08-24T14:15:22Z" }, "property2": { "created_at": "2019-08-24T14:15:22Z", "description": "string", "external_reference_ids": [ "string" ], "max_level": "string", "name": "string", "skill_category_id": "string", "updated_at": "2019-08-24T14:15:22Z" } } }