Skip to content

List templates

GET
/v1/templates
curl --request GET \
--url 'https://shareout.site/v1/templates?scope=account' \
--header 'Authorization: Bearer <token>'
scope
string
default: all
Allowed values: account artifact all
artifact_id
string

Templates

Media type application/json
object
success
boolean
data
object
templates
Array<object>
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
{
"success": true,
"data": {
"templates": [
{
"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
}
]
}
}