Skip to main content
POST
/
v1
/
framework-editor
/
framework
/
import
cURL
curl --request POST \
  --url http://localhost:3333/v1/framework-editor/framework/import \
  --header 'Content-Type: application/json' \
  --data '
{
  "version": "1",
  "framework": {
    "name": "<string>",
    "version": "<string>",
    "description": "<string>",
    "visible": true
  },
  "exportedAt": "<string>",
  "requirements": [
    "<string>"
  ],
  "controlTemplates": [
    "<string>"
  ],
  "policyTemplates": [
    "<string>"
  ],
  "taskTemplates": [
    "<string>"
  ]
}
'

Body

application/json
version
string
required
Example:

"1"

framework
object
required
exportedAt
string
requirements
string[]
controlTemplates
string[]
policyTemplates
string[]
taskTemplates
string[]

Response

201 - undefined