POST /templates.json
Body Required
-
content string | null
Content
-
customDelimiter string | null
Custom delimiter
-
Default mapping
Values are
custom
orroyalMail
. Default value iscustom
. -
Delivery
Values are
email
orwebhook
. Default value isemail
. -
Format
Values are
csv
,json
,html
,xml
,csv_mapping
, orjson_mapping
. Default value iscsv
. -
Name
-
Resource
Values are
sales
,purchases
,variants
,sale_items
, orpurchase_items
. -
Visible
Default value is
true
. -
webhookEndpoint string | null
Webhook endpoint
-
xmlDateDormat string | null
Xml date dormat
POST /templates.json
curl \
-X POST http://api.example.com/v1/templates.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content":"string","customDelimiter":"string","defaultMapping":"custom","delivery":"email","format":"csv","name":"string","resource":"sales","visible":true,"webhookEndpoint":"string","xmlDateDormat":"string"}'
Request example
{
"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": "2024-05-04T09:42:00+00:00",
"customDelimiter": "string",
"defaultMapping": "custom",
"delivery": "email",
"format": "csv",
"id": 42,
"name": "string",
"resource": "sales",
"updatedAt": "2024-05-04T09:42:00+00:00",
"visible": true,
"webhookEndpoint": "string",
"xmlDateDormat": "string"
}