Skip to main content
POST
/
v1
/
templates
Create Template
curl --request POST \
  --url https://api.oviond.com/v1/templates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Monthly SEO Report",
  "project_id": "<string>",
  "type": "<string>",
  "description": "<string>",
  "thumbnail": "<string>",
  "ranking": 123
}
'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
Minimum string length: 1
Example:

"Monthly SEO Report"

project_id
string
required

Copy pages/widgets from this project

type
string

Defaults to the source project's type when omitted

description
string
thumbnail
string
ranking
number

Response

Template created

success
enum<boolean>
required
Available options:
true
data
object
required