[lightMode]
List Export Templates
GET
/exports/templates[updatedIn] 22 days ago
This endpoint allows you to retrieve a list of the current export templates of either orders
or products
entity.
Request
[message.queryParameter]
entity
enum<string>
optional
Allowed values:
productsorders
Example:
products | customers
Request samples
[api.label.responses]
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
[response.label.jsonSchema]
status
integer
optional
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
success
boolean
optional
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
data
array [object {3}]
optional
id
integer
optional
Template ID
name
string
optional
Template Name
columns
array [object {2}]
optional
[api.label.example]
{
"status": 200,
"success": true,
"data": [
{
"id": 23424,
"name": "مخصص المنتجات ١",
"columns": [
{
"title": "اسم المنتج",
"name": "name"
},
{
"title": "السعر",
"name": "price"
},
{
"title": "الكمية",
"name": "quantity"
},
{
"title": "صورة المنتج",
"name": "image"
}
]
}
]
}
[updatedIn] 22 days ago