Skip to content

Get Project Skill

GET
/api/v1/projects/{project_id}/skills/{skill}
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.

project_id
required
Project Id
string
skill
required
Skill
string

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
description
required
Description
string
files
required
Files
object
key
additional properties
string
name
required
Name
string
pulled_from
Any of:
string
scope
required
Scope
string
Allowed values: deployment project
Example
{
"scope": "deployment"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
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"
}
]
}