Get Project Skill
GET
/api/v1/projects/{project_id}/skills/{skill}
const url = 'https://aura-api-eu.strangeworks.com/api/v1/projects/example/skills/example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://aura-api-eu.strangeworks.com/api/v1/projects/example/skills/example \ --header 'Authorization: Bearer <token>'One skill in full, and which scope is in force for it.
The project’s own copy when it has one, since that is what a turn mounts — returning the shadowed deployment copy would describe rules that do not apply.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”project_id
required
Project Id
string
skill
required
Skill
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
ProjectSkillDetail
A project’s skill, and which scope is in force for it.
project when the project set its own copy — which shadows a deployment
skill of the same name, so this reports the copy a turn would actually mount.
object
Example
{ "scope": "deployment"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}