Skip to main content
POST
/
api
/
v2
/
templates
/
from-project
Cria um template a partir de um projeto existente
curl --request POST \
  --url https://app.tarefy.com/nodeapi/api/v2/templates/from-project \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "projectId": 2209,
  "name": "Template Projeto Comercial",
  "description": "Template gerado a partir de um projeto existente",
  "color": "#4BD4F2",
  "icon": "layout-template",
  "type": "quadro"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://developers.tarefy.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
projectId
integer
required
Example:

2209

name
string
required
Example:

"Template Projeto Comercial"

description
string
Example:

"Template gerado a partir de um projeto existente"

color
string
Example:

"#4BD4F2"

icon
string
Example:

"layout-template"

type
string
Example:

"quadro"

Response

200 - application/json

Template criado a partir do projeto com sucesso

The response is of type object.