# New Record — Zoho Creator

> Emit new records in a report. The Added Time field must be added as a Grouping field in the Zoho Creator record properties for the Report chosen in the dropdown below. See the grouping help article and the docs for more information.

- Key: `zoho_creator-new-record`
- Type: Trigger (Polling)
- Version: 0.0.3
- App: Zoho Creator (`zoho_creator`) — https://pipedream.com/apps/zoho-creator.md
- This page (HTML): https://pipedream.com/apps/zoho-creator/triggers/new-record
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/zoho_creator/sources/new-record/new-record.mjs

## Description

Emit new records in a report. The `Added Time` field must be added as a **Grouping** field in the Zoho Creator *record properties* for the **Report** chosen in the dropdown below. See [the grouping help article](https://www.zoho.com/creator/newhelp/reports/display-records-as-groups-list-report.html) and [the docs](https://www.zoho.com/creator/help/api/v2/get-records.html) for more information.

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `timer` | `$.interface.timer` | Yes | How often to poll the Zoho Creator API for resources |
| `appLinkName` | `string` | Yes | The link name of the target application Options are loaded from the connected account. |
| `reportLinkName` | `string` | Yes | The link name of the target report. The Added Time field must be added as a Grouping field in the Zoho Creator record properties for the chosen report. See the grouping help article. Options are loaded from the connected account. |

## Returns

Events emitted by Zoho Creator.

## 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: "zoho_creator-new-record",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_creator: { authProvisionId: "apn_xxxxxxx" },
    timer: { "intervalSeconds": 900 },
    appLinkName: "Application",
  },
  webhookUrl: "https://example.com/webhooks/zoho-creator",
})

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": "zoho_creator-new-record",
    "webhook_url": "https://example.com/webhooks/zoho-creator",
    "configured_props": {
      "zoho_creator": { "authProvisionId": "apn_xxxxxxx" },
      "timer": { "intervalSeconds": 900 },
      "appLinkName": "Application"
    }
  }'
```

**MCP**

MCP servers expose Zoho Creator actions as on-demand tools.

New Record 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/zoho-creator.md · All apps: https://pipedream.com/apps
