***

title: Orders
slug: /reference/typescript/rest/registry/orders
description: 10DLC number assignment order management.
max-toc-depth: 3
---------------------

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

[restclient]: /docs/server-sdks/reference/typescript/rest/client

Retrieve number assignment orders. Orders track the process of assigning phone
numbers to 10DLC campaigns.

Access via `client.registry.orders` on a [`RestClient`][restclient] instance.

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

const client = new RestClient();
```

## **get**

Retrieve a specific number assignment order.

#

<EndpointSchemaSnippet endpoint="GET /api/relay/rest/registry/beta/orders/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/registry/beta/orders/{id}" />

## **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 order = await client.registry.orders.get("order-id");
console.log(order.id, order.status);
```