---
title: "Create Subscriber"
method: POST
path: "/api/fabric/resources/subscribers"
tags: ["Subscribers"]
---

# Create Subscriber

`POST /api/fabric/resources/subscribers`

Creates a [Subscriber](/docs/platform/subscribers) resource for a known user, with sign-in credentials and optional profile fields. Use it when the user needs a persistent identity for Browser SDK or resource access; use [Create Subscriber guest token](/docs/apis/rest/subscribers/tokens/create-subscriber-guest-token) for temporary scoped access without a full account. Issue the new subscriber a client credential through [Create Subscriber token](/docs/apis/rest/subscribers/tokens/create-subscriber-token).

#### Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.

[Learn more about API scopes](/docs/platform/your-signalwire-api-space).

## Request body

- SubscriberRequest
  - `password` string — Password of the Subscriber. Defaults to a secure random password if not provided.
  - `email` string, required — Email of the Subscriber.
  - `first_name` string — First name of the Subscriber.
  - `last_name` string — Last name of the Subscriber.
  - `display_name` string — Display name of the Subscriber.
  - `job_title` string — Job title of the Subscriber.
  - `timezone` string — Timezone of the Subscriber.
  - `country` string — Country of the Subscriber.
  - `company_name` string — Company name of the Subscriber.

## Response `201`

The request has succeeded and a new resource has been created as a result.

- SubscriberResponse
  - `id` string, required — Unique ID of the request.
  - `project_id` string, required — Unique ID of the project.
  - `display_name` string, required — Display name of the Subscriber.
  - `type` 'subscriber', required — Type of the resource.
  - `created_at` string, date-time, required — Date and time when the resource was created.
  - `updated_at` string, date-time, required — Date and time when the resource was updated.
  - `subscriber` Subscriber, required
    - `id` string, uuid, required — Universal Unique Identifier.
    - `email` string, required — Email of the Subscriber.
    - `first_name` string, required — First name of the Subscriber.
    - `last_name` string, required — Last name of the Subscriber.
    - `display_name` string, required — Display name of the Subscriber.
    - `job_title` string, required — Job title of the Subscriber.
    - `timezone` string, required — Timezone of the Subscriber.
    - `country` string, required — Country of the Subscriber.
    - `company_name` string, required — Company name of the Subscriber.

## Other responses

- `401` — Access is unauthorized.
- `404` — The server cannot find the requested resource.
- `422` — The request contains invalid parameters. See errors for details.
- `500` — An internal server error occurred.

---

[API](https://skmtc.dev/signalwire/apis/signalwire-rest-api.md) · [All operations](https://skmtc.dev/signalwire/apis/signalwire-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/signalwire/signalwire-rest-api/revisions/792d5b8e2970/schema)
