Skip to main content
POST
/
v3
/
email-templates
/
{id}
/
move
Move an email template
curl --request POST \
  --url https://api.reply.io/v3/email-templates/{id}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "folderId": 10,
  "folderType": "team"
}
'
{
  "id": 101,
  "name": "Follow-up template",
  "subject": "Quick follow-up",
  "body": "<p>Hi {{firstName}},</p>",
  "folderId": 5,
  "folderType": "personal",
  "attachments": [],
  "createdAt": "2026-01-15T10:30:00Z",
  "updatedAt": "2026-02-20T14:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Email template ID to move

Body

application/json

Request body for moving an email template to a different folder.

folderId
integer
required

ID of the target folder

Required range: x >= 1
folderType
enum<string>
required

Type of the target folder

Available options:
personal,
team

Response

Email template moved successfully

Full representation of an email template including timestamps.

id
integer
read-only

Unique identifier for the email template

name
string

Name of the email template

subject
string | null

Email subject line

body
string

HTML body of the email template

folderId
integer | null

ID of the folder containing this template

folderType
string | null

Type of the folder (e.g., "personal", "shared")

attachments
EmailTemplateAttachment · object[]

List of attachments associated with the template

createdAt
string<date-time>
read-only

Timestamp when the template was created

updatedAt
string<date-time>
read-only

Timestamp when the template was last updated