Skip to main content
Version: Next

Returns a Skill

GET /agent/skill

Returns a Skill:

Parameters

nameintyperequireddescription
assetquerystringtrueThe Asset Id of the Skill

Code Snippets

Shell + Curl
curl --request GET \
--url 'https://knowledge.dev.demo.catena-x.net/consumer-edc-data/BPNL00000003CQI9/api/agent/skill?asset=SkillAsset%3Fconsumer%3DDataspace'

Responses

200

The Skill could be found

Headers
content-typeapplication/sparql-query

Example response for application/sparql-query

SELECT DISTINCT ?luogo ?indirizzo ?comune WHERE {
?x a cis:CulturalInstituteOrSite ;
cis:institutionalCISName ?luogo ;
cis:hasSite ?site .
?site cis:siteAddress ?address .
?address clvapit:fullAddress ?indirizzo ;
clvapit:hasCity [rdfs:label ?comune] .
FILTER regex(str(?comune), "Vinci", "i")
} ORDER BY ?luogo LIMIT 100

400

the Skill Could not be found.

500

Fatal error

(C) 2021,2024 Contributors to the Eclipse Foundation. SPDX-License-Identifier: CC-BY-4.0