---
title: "Create teammate signature"
method: POST
path: "/teammates/{teammate_id}/signatures"
tags: ["Signatures"]
---

# Create teammate signature

`POST /teammates/{teammate_id}/signatures`

Create a new signature for the given teammate

Required scope: `signatures:write`

## Path parameters

- `teammate_id` string, required

## Request body

- CreatePrivateSignature — A signature that can be used to sign messages.
  - `name` string, required — Name of the signature
  - `sender_info` string — Sender info of the signature that will appear in the From line of emails sent.
  - `body` string, required — Body of the signature
  - `is_default` boolean — If true, the signature will be set as the default signature for the teammate.
  - `channel_ids` string[] — The specific channels this signature is available in. If omitted or null, the signature will be available in all channels the teammate has access to. Alternatively, you can specify channels using a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).

## Response `201`

A signature

- SignatureResponse
  - `_links` object, required
    - `self` string — Link to resource
    - `related` object
      - `owner` string — Link to signature's owner (either a team or teammate)
  - `id` string, required — Unique identifier of the signature
  - `name` string, nullable, required — Name of the signature
  - `body` string, required — Body of the signature
  - `sender_info` string, nullable, required — Sender info of the signature
  - `is_visible_for_all_teammate_channels` boolean, required — Whether or not the signature is available in teammate channels.
  - `is_default` boolean, required — Whether the signature is the default signature for the team or teammate.
  - `is_private` boolean, required — Whether the signature is private to the teammate.
  - `channel_ids` string[], nullable, required

---

[API](https://skmtc.net/frontapp/apis/core-api.md) · [All operations](https://skmtc.net/frontapp/apis/core-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/frontapp/core-api/revisions/76d1eaa2d0eb/schema)
