Skip to main content
POST
/
models
cURL
curl --request POST \
  --url https://api.starfort.aim-intelligence.com/models \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "status": "secure",
  "id": 123,
  "type": "<string>"
}
'
{
  "name": "<string>",
  "status": "secure",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Model to register

name
string
required

The name of the AI model

status
enum<string>
required

Current security status

Available options:
secure,
vulnerable,
scanning
id
integer<int64>
required

Identification number of the model

type
string

Type of model (e.g. LLM, CV)

Response

Model registered

name
string
required

The name of the AI model

status
enum<string>
required

Current security status

Available options:
secure,
vulnerable,
scanning
type
string

Type of model (e.g. LLM, CV)