Run the AutoTagging process

post

/autotag/run

Request

There are no request parameters for this operation.

Back to Top

Response

200 Response

AutoTagging was completed successfully.

400 Response

Invalid request
Back to Top

Examples

The following example shows how to run an autotagging process by submitting a POST request on the REST resource using cURL. For more information about cURL, see "Use cURL".

curl -X POST "hostname:port/autotag/run" -H "accept: */*" -H "Content-Type: application/json" -d @file.json

Example of Response Body

If successful, the response code 201 is returned along with a header. For example:

{
    "processedRecords": 64,
    "status": "success"
}


2. SMART SEARCH
http://localhost:8079/search/smartsearch?page=1&limit=10&sortDesc=true&query=control&libraryType=&useSemantic=false
Request Method
GET
response
{
    "original_query": "control",
    "corrected_query": "",
    "count": 1,
    "results": [
        {
            "date": "2026-03-16T11:05:47",
            "score": 17.640151977539062,
            "data": "{}",
            "name": "Control Structures",
            "resource_id": 12,
            "description": " Control Actions",
            "id": 99,
            "source": "STAP",
            "type": "SCENARIO",
            "auto_tags": "",
            "tags": "E2E, Control Structures"
        }
    ]
}

If the request fails, the response includes the appropriate HTTP code.

Back to Top