List Project Skills
GET
/api/v1/projects/{project_id}/skills
const url = 'https://aura-api-eu.strangeworks.com/api/v1/projects/example/skills';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 \ --header 'Authorization: Bearer <token>'The customer skills in force for this project, by the scope that set them.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”project_id
required
Project Id
string
Responses
Section titled “Responses”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>
SkillSummaryobject
description
required
Description
string
files
required
Files
Array<string>
name
required
Name
string
project
required
Project
Array<object>
SkillSummaryobject
description
required
Description
string
files
required
Files
Array<string>
name
required
Name
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>
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" } ]}