Body
Required
-
content
string | null Content
-
customDelimiter
string | null Custom delimiter
-
defaultMapping
string | null Required Default mapping
Values are
custom
orroyalMail
. Default value iscustom
. -
delivery
string | null Required Delivery
Values are
email
orwebhook
. Default value isemail
. -
format
string Required Format
Values are
csv
,json
,html
,xml
,csv_mapping
, orjson_mapping
. Default value iscsv
. -
name
string Required Name
-
resource
string Required Resource
Values are
sales
,purchases
,variants
,sale_items
, orpurchase_items
. -
visible
boolean Required Visible
Default value is
true
. -
webhookEndpoint
string | null Webhook endpoint
-
xmlDateDormat
string | null Xml date dormat
POST
/templates.json
curl \
--request POST 'http://api.example.com/v1/templates.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"content":"string","customDelimiter":"string","defaultMapping":"custom","delivery":"email","format":"csv","name":"string","resource":"sales","visible":true,"webhookEndpoint":"string","xmlDateDormat":"string"}'
Request examples
{
"content": "string",
"customDelimiter": "string",
"defaultMapping": "custom",
"delivery": "email",
"format": "csv",
"name": "string",
"resource": "sales",
"visible": true,
"webhookEndpoint": "string",
"xmlDateDormat": "string"
}
Response examples (200)
{
"content": "string",
"createdAt": "2025-05-04T09:42:00Z",
"customDelimiter": "string",
"defaultMapping": "custom",
"delivery": "email",
"format": "csv",
"id": 42,
"name": "string",
"resource": "sales",
"updatedAt": "2025-05-04T09:42:00Z",
"visible": true,
"webhookEndpoint": "string",
"xmlDateDormat": "string"
}