List Approvals
GET
/v1/openai-agents/approvalsGET
/v1/openai-agents/approvalsYour instance endpoint, shown on the instance page in the dashboard. Each instance has its own host; there is no shared API host.
Responses
200 Success
| Property | Type | Description |
|---|---|---|
data | object[] |
400 Invalid request
| Property | Type | Description |
|---|---|---|
error | object |
403 Permission denied
| Property | Type | Description |
|---|---|---|
error | object |
404 Not found
| Property | Type | Description |
|---|---|---|
error | object |
500 Internal error
| Property | Type | Description |
|---|---|---|
error | object |
503 Unavailable
| Property | Type | Description |
|---|---|---|
error | object |
Request
curl -X GET "http://localhost:8089/v1/openai-agents/approvals" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"const response = await fetch("http://localhost:8089/v1/openai-agents/approvals", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
});
const data = await response.json();import requests
response = requests.get(
"http://localhost:8089/v1/openai-agents/approvals",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
)
data = response.json()Response
{
"data": [
{
"id": "string",
"session_id": "string",
"turn_id": "string",
"call_id": "string",
"tool_name": "string",
"resource_kind": "string",
"resource_id": "string",
"status": "string",
"requested_by": "string",
"requested_at": "string",
"expires_at": "string"
}
]
}{
"error": {
"code": "string",
"message": "string"
}
}{
"error": {
"code": "string",
"message": "string"
}
}{
"error": {
"code": "string",
"message": "string"
}
}{
"error": {
"code": "string",
"message": "string"
}
}{
"error": {
"code": "string",
"message": "string"
}
}
