AI Applications

AI Applications.

List AI applications.

List AI applications.

SecuritybearerAuth
Request
query Parameters
verbosity
string (ApplicationVerbosity)
Default: "brief"

response verbosity level.

Enum: "brief" "full"
Example: verbosity=full
offset
integer <int32>

The offset of the first item returned in the collection.

Example: offset=100
limit
integer <int32> [ 1 .. 500 ]
Default: 50

The maximum number of entries to return.

sortOrder
string
Default: "asc"

Sort results in descending or ascending order.

Enum: "asc" "desc"
sortBy
string

Sort results by a parameter.

Enum: "clusterId" "name" "projectId" "projectName" "source" "type"
filterBy
Array of strings

Filter results by a parameter. Use the format field-name operator value. Operators are == Equals, != Not equals, <= Less than or equal, >= Greater than or equal, =@ contains, !@ Does not contain, =^ Starts with and =$ Ends with. Dates are in ISO 8601 timestamp format and available for operators ==, !=, <= and >=.

Example: filterBy=name!=some-name
Responses
200

ok.

400

Bad request.

401

Unauthorized

403

Forbidden

503

unexpected error

get/api/v1/ai-applications
Response samples
application/json
{
  • "next": 1,
  • "applications": [
    ]
}

Get AI application.

Get AI application.

SecuritybearerAuth
Request
path Parameters
aiApplicationId
required
string <uuid>

The unique identifier of the application.

Responses
200

ok.

400

Bad request.

401

Unauthorized

403

Forbidden

503

unexpected error

get/api/v1/ai-applications/{aiApplicationId}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "source": "string",
  • "type": "string",
  • "phase": "string",
  • "projectId": "string",
  • "projectName": "string",
  • "resources": [
    ],
  • "allocatedResources": {
    },
  • "requestedResources": {
    }
}