Get project safety alert
client.Safety.Alerts.Get(ctx, id) (*SafetyAlert, error)
GET/safety/alerts/{id}
Get a safety alert belonging to the authenticated API project.
Get project safety alert
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
safetyAlert, err := client.Safety.Alerts.Get(context.TODO(), "id")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", safetyAlert.ID)
}
{
"id": "alert_0123456789abcdef0123456789abcdef",
"object": "safety.alert",
"created_at": 1787659200,
"request_id": "req_123",
"response_id": "resp_123",
"model": "gpt-6-astra",
"request_paused": true,
"error_type": "potentially_unintended_data_access",
"reason": "Potentially unintended data access."
}
Returns Examples
{
"id": "alert_0123456789abcdef0123456789abcdef",
"object": "safety.alert",
"created_at": 1787659200,
"request_id": "req_123",
"response_id": "resp_123",
"model": "gpt-6-astra",
"request_paused": true,
"error_type": "potentially_unintended_data_access",
"reason": "Potentially unintended data access."
}