List Evaluators
client.AIGateway.EvaluationTypes.List(ctx, params) (*V4PagePaginationArray[EvaluationTypeListResponse], error)
GET/accounts/{account_id}/ai-gateway/evaluation-types
List Evaluators
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
List Evaluators
package main
import (
"context"
"fmt"
"github.com/stainless-sdks/cloudflare-go"
"github.com/stainless-sdks/cloudflare-go/ai_gateway"
"github.com/stainless-sdks/cloudflare-go/option"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
page, err := client.AIGateway.EvaluationTypes.List(context.TODO(), ai_gateway.EvaluationTypeListParams{
AccountID: cloudflare.F("0d37909e38d3e99c29fa2cd343ac421a"),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
{
"result": [
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"enable": true,
"mandatory": true,
"modified_at": "2019-12-27T18:11:19.117Z",
"name": "name",
"type": "type"
}
],
"result_info": {
"count": 0,
"page": 0,
"per_page": 0,
"total_count": 0
},
"success": true
}Returns Examples
{
"result": [
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"enable": true,
"mandatory": true,
"modified_at": "2019-12-27T18:11:19.117Z",
"name": "name",
"type": "type"
}
],
"result_info": {
"count": 0,
"page": 0,
"per_page": 0,
"total_count": 0
},
"success": true
}