---
title: "Create Transfer Destination"
method: POST
path: "/settings/transfer-destinations"
tags: ["Settings"]
---

# Create Transfer Destination

`POST /settings/transfer-destinations`

Create a new transfer destination. Developer only.

Requires transfer_destinations_enabled to be true for the customer.
Destination names must be unique per customer.

## Request body

- TransferDestinationCreateRequest — Create transfer destination request model
  - `name` string, required — Name of the transfer destination
  - `phone_number` string, required — Phone number in E.164 format (e.g., +12025551234)
  - `test_phone_number` string, nullable — Alternate number in E.164 format used for test calls when test transfer numbers are enabled
  - `description` string, nullable — Optional description of when to use this destination

## Response `201`

Successful Response

- TransferDestinationResponse — Transfer destination response model
  - `transfer_destination_id` string, uuid, required
  - `name` string, required — Name of the transfer destination
  - `phone_number` string, required — Phone number in E.164 format
  - `test_phone_number` string, nullable — Alternate number used for test calls when test transfer numbers are enabled
  - `description` string, nullable — Optional description of when to use this destination

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
