AI Suggestions
AI-powered recommendations for policies, schemas, and workflows.
Returns AI response to the current question
The question of choosing a methodology
Find me large scale projectsSuccessful operation. Returns a comma-separated list of suggested methodology codes.
Internal server error.
GET /api/v1/ai-suggestions/ask?q=Find+me+large+scale+projects HTTP/1.1
Accept: */*
ACM0001, ACM0002, ACM0006, ACM0007, ACM0018Rebuilds vector based on policy data in the DB
Successful operation. Returns true when vector rebuild is complete.
Internal server error.
PUT /api/v1/ai-suggestions/rebuild-vector HTTP/1.1
Accept: */*
trueLets the client know upfront whether it should show the Glossary AI schema-tagging UI at all.
Successful operation.
Unauthorized request.
Forbidden
GET /api/v1/ai-suggestions/schema-properties/enabled HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
trueReturns ranked IWA property candidates for each schema field
Id of the schema the field(s) needing a suggestion belong to
Names of the schema fields to return suggestions for
Successful operation.
Unauthorized request.
Forbidden
Internal server error.
POST /api/v1/ai-suggestions/schema-properties HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"schemaId": "text",
"fieldNames": [
"text"
]
}{
"available": true,
"results": [
{
"fieldName": "text",
"candidates": [
{
"title": "text",
"confidence": 1,
"rationale": "text"
}
]
}
]
}Last updated
Was this helpful?