***

title: create
slug: /reference/typescript/rest/imported-numbers/create
description: Imported Phone Numbers namespace — create only.
max-toc-depth: 3
---------------------

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

Imported Phone Numbers namespace — create only.

<EndpointSchemaSnippet endpoint="POST /api/relay/rest/imported_phone_numbers" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/relay/rest/imported_phone_numbers" />

## **Example**

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

const client = new RestClient();
const result = await client.importedNumbers.create({ number: '+15551234567' });
console.log(result);
```