***

title: create
slug: /reference/typescript/rest/fabric/subscribers/create
description: Create a new subscriber resource.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Create a new [subscriber](/docs/platform/subscribers) resource.

<EndpointSchemaSnippet endpoint="POST /api/fabric/resources/subscribers" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/fabric/resources/subscribers" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});

const result = await client.fabric.subscribers.create({
  email: "alice@example.com",
  display_name: "Alice"
});
console.log("Created:", result.id);
```