All URIs are relative to https://dashboard.quantcdn.io
| Method | HTTP request | Description |
|---|---|---|
| GetAIOrchestrationStatus | Get /api/v3/organizations/{organisation}/ai/tools/orchestrations/{orchestrationId} | Get Tool Orchestration Status (Async Tool Polling) |
| GetAIToolExecutionStatus | Get /api/v3/organizations/{organisation}/ai/tools/executions/{executionId} | Get async tool execution status and result |
| ListAIToolExecutions | Get /api/v3/organizations/{organisation}/ai/tools/executions | List tool executions for monitoring and debugging |
| ListAIToolNames | Get /api/v3/organizations/{organisation}/ai/tools/names | List tool names only (lightweight response) |
| ListAITools | Get /api/v3/organizations/{organisation}/ai/tools | List available built-in tools for function calling |
GetAIOrchestrationStatus200Response GetAIOrchestrationStatus(ctx, organisation, orchestrationId).Execute()
Get Tool Orchestration Status (Async Tool Polling)
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/quantcdn/quant-admin-go"
)
func main() {
organisation := "organisation_example" // string | The organisation ID
orchestrationId := "orch_abc123def456789012345678901234" // string | Orchestration identifier for aggregated async tool executions
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AIToolsAPI.GetAIOrchestrationStatus(context.Background(), organisation, orchestrationId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AIToolsAPI.GetAIOrchestrationStatus``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetAIOrchestrationStatus`: GetAIOrchestrationStatus200Response
fmt.Fprintf(os.Stdout, "Response from `AIToolsAPI.GetAIOrchestrationStatus`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| organisation | string | The organisation ID | |
| orchestrationId | string | Orchestration identifier for aggregated async tool executions |
Other parameters are passed through a pointer to a apiGetAIOrchestrationStatusRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
GetAIOrchestrationStatus200Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetAIToolExecutionStatus200Response GetAIToolExecutionStatus(ctx, organisation, executionId).Execute()
Get async tool execution status and result
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/quantcdn/quant-admin-go"
)
func main() {
organisation := "organisation_example" // string | The organisation ID
executionId := "exec_0123456789abcdef0123456789abcdef" // string | Tool execution identifier
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AIToolsAPI.GetAIToolExecutionStatus(context.Background(), organisation, executionId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AIToolsAPI.GetAIToolExecutionStatus``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetAIToolExecutionStatus`: GetAIToolExecutionStatus200Response
fmt.Fprintf(os.Stdout, "Response from `AIToolsAPI.GetAIToolExecutionStatus`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| organisation | string | The organisation ID | |
| executionId | string | Tool execution identifier |
Other parameters are passed through a pointer to a apiGetAIToolExecutionStatusRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
GetAIToolExecutionStatus200Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ListAIToolExecutions200Response ListAIToolExecutions(ctx, organisation).Status(status).Limit(limit).Execute()
List tool executions for monitoring and debugging
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/quantcdn/quant-admin-go"
)
func main() {
organisation := "organisation_example" // string | The organisation ID
status := "status_example" // string | Filter by execution status (optional)
limit := int32(56) // int32 | Maximum number of executions to return (optional) (default to 50)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AIToolsAPI.ListAIToolExecutions(context.Background(), organisation).Status(status).Limit(limit).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AIToolsAPI.ListAIToolExecutions``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListAIToolExecutions`: ListAIToolExecutions200Response
fmt.Fprintf(os.Stdout, "Response from `AIToolsAPI.ListAIToolExecutions`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| organisation | string | The organisation ID |
Other parameters are passed through a pointer to a apiListAIToolExecutionsRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
status | string | Filter by execution status | limit | int32 | Maximum number of executions to return | [default to 50]
ListAIToolExecutions200Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ListAIToolNames200Response ListAIToolNames(ctx, organisation).Execute()
List tool names only (lightweight response)
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/quantcdn/quant-admin-go"
)
func main() {
organisation := "organisation_example" // string | The organisation ID
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AIToolsAPI.ListAIToolNames(context.Background(), organisation).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AIToolsAPI.ListAIToolNames``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListAIToolNames`: ListAIToolNames200Response
fmt.Fprintf(os.Stdout, "Response from `AIToolsAPI.ListAIToolNames`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| organisation | string | The organisation ID |
Other parameters are passed through a pointer to a apiListAIToolNamesRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ListAITools200Response ListAITools(ctx, organisation).Execute()
List available built-in tools for function calling
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/quantcdn/quant-admin-go"
)
func main() {
organisation := "organisation_example" // string | The organisation ID
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AIToolsAPI.ListAITools(context.Background(), organisation).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AIToolsAPI.ListAITools``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListAITools`: ListAITools200Response
fmt.Fprintf(os.Stdout, "Response from `AIToolsAPI.ListAITools`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| organisation | string | The organisation ID |
Other parameters are passed through a pointer to a apiListAIToolsRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]