# New File Created — OpenAI (ChatGPT)

> Emit new event when a new file is created in OpenAI. See the documentation

- Key: `openai-new-file-created`
- Type: Trigger (Polling)
- Version: 0.1.2
- App: OpenAI (ChatGPT) (`openai`) — https://pipedream.com/apps/openai.md
- This page (HTML): https://pipedream.com/apps/openai/triggers/new-file-created
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/openai/sources/new-file-created/new-file-created.mjs

## Description

Emit new event when a new file is created in OpenAI. [See the documentation](https://platform.openai.com/docs/api-reference/files/list)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `timer` | `$.interface.timer` | Yes | Timer |
| `purpose` | `string` | No | If specified, events will only be emitted for files with the specified purpose. |
| `includeLink` | `boolean` | No | Upload file to your File Stash and emit temporary download link to the file. See the docs to learn more about working with files in Pipedream. |
| `dir` | `dir` | No | Dir |

## Returns

Events emitted by OpenAI (ChatGPT).

## Run it

**TypeScript**

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const deployed = await pd.triggers.deploy({
  id: "openai-new-file-created",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    openai: { authProvisionId: "apn_xxxxxxx" },
    timer: { "intervalSeconds": 900 },
    purpose: "Purpose",
  },
  webhookUrl: "https://example.com/webhooks/openai",
})

console.log(deployed.id)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/triggers/deploy \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "openai-new-file-created",
    "webhook_url": "https://example.com/webhooks/openai",
    "configured_props": {
      "openai": { "authProvisionId": "apn_xxxxxxx" },
      "timer": { "intervalSeconds": 900 },
      "purpose": "Purpose"
    }
  }'
```

**MCP**

MCP servers expose OpenAI (ChatGPT) actions as on-demand tools.

New File Created is an event source, so your application deploys it with the Connect SDK or API and then either receives each event at a webhook URL or retrieves events on demand with the trigger events API.

## Event delivery

Every event is sent to the HTTP endpoint you choose when you deploy the source. Or: no webhook required — your app or agent can fetch recent events from the [trigger events API](https://pipedream.com/docs/connect/api-reference/list-trigger-events.md) instead.

---

- App: https://pipedream.com/apps/openai.md · All apps: https://pipedream.com/apps
