Skip to content

List Project Skills

GET
/api/v1/projects/{project_id}/skills
curl --request GET \
--url https://aura-api-eu.strangeworks.com/api/v1/projects/example/skills \
--header 'Authorization: Bearer <token>'

The customer skills in force for this project, by the scope that set them.

project_id
required
Project Id
string

Successful Response

Media typeapplication/json
ProjectSkillListResponse

Both scopes of skill in force for a project.

Separate lists rather than one merged set: a caller needs to see which copy a write would replace, and a project skill sharing a deployment skill’s name shadows it for this project only.

object
deployment
required
Deployment
Array<object>
SkillSummary
object
description
required
Description
string
files
required
Files
Array<string>
name
required
Name
string
project
required
Project
Array<object>
SkillSummary
object
description
required
Description
string
files
required
Files
Array<string>
name
required
Name
string
pulled_from
Any of:
string
Examplegenerated
{
"deployment": [
{
"description": "example",
"files": [
"example"
],
"name": "example"
}
],
"project": [
{
"description": "example",
"files": [
"example"
],
"name": "example"
}
],
"pulled_from": "example"
}

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"
}
]
}