Skip to content

Get project AI technologies

Request

Returns a list of AI technologies used in a specific project

Security
bearer-key
Path
projectUuidstringrequired

UUID of the project

Query
cursorstring

Parameter indicates the starting point for retrieving results, the first call doesn't include a cursor parameter in the request, the API response includes the first set of results along with a cursor pointing to the last item retrieved.

limitinteger

Specifies the maximum number of items to be returned in the response.

GET
/api/v3.0/projects/{projectUuid}/ai/findings/technologies
curl -i -X GET \
  'https://baseUrl/api/v3.0/projects/{projectUuid}/ai/findings/technologies?cursor=string&limit=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
dataArray of objects(v3.DTO_AIComponent)
paginationobject(v3.V3Pagination)
Response
{ "data": [ {} ], "pagination": { "cursor": 0, "hasMore": true, "limit": 0, "total": 0 } }