# Remove Multiple Podcasts from Team

> Pod Engine API endpoint reference, optimized for LLM consumption.
> Auto-generated from the source-of-truth endpoint registry.
>
> Category: Teams
> Source: https://www.podengine.ai/api-docs/remove-multiple-podcasts-from-team.md
> Interactive HTML docs: https://www.podengine.ai/api-docs/remove-multiple-podcasts-from-team
> Full API reference (all endpoints): https://www.podengine.ai/api-docs/llms.txt

**Base URL:** `http://localhost:4000`
**Auth:** Requires a Bearer token: `Authorization: Bearer YOUR_API_KEY`

---

#### DELETE /api/v1/teams/podcasts/multiple
**Remove Multiple Podcasts from Team**

Remove multiple podcasts from your team by PodEngine IDs or Apple IDs

```bash
curl -X DELETE "http://localhost:4000/api/v1/teams/podcasts/multiple" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

**Request body schema:**
```json
{
  "type": "object",
  "properties": {
    "podcastIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "appleIds": {
      "type": "array",
      "items": {
        "type": "integer",
        "minimum": 0,
        "exclusiveMinimum": true,
        "maximum": 9007199254740991
      }
    }
  },
  "additionalProperties": false
}
```

**Response schema:**
```json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK"
      ]
    },
    "data": {
      "type": "object",
      "properties": {
        "notFoundAppleIds": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "errors": {
          "type": "number"
        },
        "removedPodcasts": {
          "type": "number"
        },
        "notOnList": {
          "default": 0,
          "type": "number"
        }
      },
      "required": [
        "notFoundAppleIds",
        "errors",
        "removedPodcasts",
        "notOnList"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "status",
    "data"
  ],
  "additionalProperties": false
}
```

---

## See also

- All endpoints in one file: https://www.podengine.ai/api-docs/llms.txt
- Full reference with every schema inlined: https://www.podengine.ai/api-docs/llms-full.txt
- OpenAPI 3.1 spec: https://www.podengine.ai/api-docs/openapi.json
- Get an API key: https://www.podengine.ai/get-started
- Support: support@podengine.ai
