---
title: "Get Team Callbacks"
method: GET
path: "/team/{team_id}/callback"
tags: ["team management"]
---

# Get Team Callbacks

`GET /team/{team_id}/callback`

Get the success/failure callbacks and variables for a team

Parameters:
- team_id (str, required): The unique identifier for the team

Example curl:
```
curl -X GET 'http://localhost:4000/team/dbe2f686-a686-4896-864a-4c3924458709/callback'         -H 'Authorization: Bearer sk-1234'
```

This will return the callback settings for the team with id dbe2f686-a686-4896-864a-4c3924458709

Covers callbacks registered through POST /team/{team_id}/callback and the Admin UI as well as
teams still on the deprecated callback_settings shape, resolved from the team's stored metadata
with the same precedence used at request time. A key-level logging config overrides the team's
at request time and is not reflected here. Credential-bearing callback_vars are returned masked
as `***REDACTED***`

Returns {
        "status": "success",
        "data": {
            "team_id": team_id,
            "success_callbacks": team_callback_settings_obj.success_callback,
            "failure_callbacks": team_callback_settings_obj.failure_callback,
            "callback_vars": team_callback_settings_obj.callback_vars,
        },
    }

## Path parameters

- `team_id` string, required

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-18** `082b5fabd909` — 2 info
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/team/:team_id/callback/get.md)

---

[API](https://skmtc.dev/flock/apis/litellm-api.md) · [All operations](https://skmtc.dev/flock/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc.dev/flock/apis/litellm-api/revisions/731afbea6a1b?raw)
