Skip to content

Get a template

GET
/v1/templates/{id}
curl --request GET \
--url https://shareout.site/v1/templates/example \
--header 'Authorization: Bearer <token>'
id
required
string

The template

Media type application/json
object
id
string
artifact_id
string | null
owner_id
string
name
string
subject
string
html
string
text_body
string
is_system
boolean
created_at
integer
updated_at
integer
Example generated
{
"id": "example",
"artifact_id": "example",
"owner_id": "example",
"name": "example",
"subject": "example",
"html": "example",
"text_body": "example",
"is_system": true,
"created_at": 1,
"updated_at": 1
}

Resource not found

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}