Skip to main content
GET
/
api
/
approval
/
internal
/
list
List internal approval requests for the organization
curl --request GET \
  --url https://your-instance.example.com/api/approval/internal/list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "approvals": [
    {
      "_id": "64d2f9c5e8a1d4e001a0b1c2",
      "approvalType": "internal",
      "status": "pending",
      "question": "Approve booking a Tuesday 2pm tour for Alex Nguyen?",
      "deferredTool": "book_tour",
      "createdAt": "2026-04-22T10:14:00.000Z"
    }
  ],
  "total": 1,
  "limit": 50,
  "skip": 0
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

status
string
limit
integer
default:50
Required range: 1 <= x <= 100
skip
integer
default:0
Required range: x >= 0

Response

Internal approvals returned

success
enum<boolean>
required
Available options:
true
approvals
object[]
required
total
integer
required
limit
integer
required
skip
integer
required