- Welcome 👋
- Get Started
- Create Your First App
- Authorization
- Webhooks
- Conditional Webhooks
- Security Considerations
- Multi-Language Support
- Responses
- Pagination
- Rate Limiting
- Versioning
- Change Log
- Support
- APIs
- Orders
- Order Status
- Order Histories
- Order Tags
- Order Invoice
- Order Reservations
- Order Items
- Products
- Product Options
- Product Quantity
- Product Variants
- Product Tags
- Product Images
- Product Option Values
- Abandoned Carts
- Customer Groups
- Customers
- Digitals Product
- Categories
- Exports
- Shipments
- Shipping Companies
- Shipping Zones
- Shipping Rules
- Countries
- Product Option Templates
- Taxes
- Coupons
- Affiliates
- Order Assignment
- Special Offers
- Transactions
- Payments
- Settlements
- Settings
- Merchant
- Brands
- Reviews
- Branches
- Currencies
- SEO
- Cities
- DNS Records
- Languages
- Employees
- Advertisements
- Webhooks
- Custom URLs
- Loyalty Points
- Webhooks - Store Events
List Export Templates
Production
Production
GET
https://api.salla.dev/admin/v2/exports/templates
Exports
Last modified:2025-02-04 11:02:03
orders
or products
entity.Scopes
exports.read
- Exports Read OnlyRequest
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Query Params
entity
enum<string>Â
optional
Allowed values:
productsorders
Example:
products | customers
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/exports/templates?entity=products | customers'
Responses
🟢200Success
application/json
Body
status
integerÂ
optional
success
booleanÂ
optional
data
array [object {3}]Â
optional
id
integerÂ
optional
name
stringÂ
optional
columns
array [object {2}]Â
optional
Example
{
"status": 200,
"success": true,
"data": [
{
"id": 23424,
"name": "مخصص المنتجات ١",
"columns": [
{
"title": "اسم المنتج",
"name": "name"
},
{
"title": "السعر",
"name": "price"
},
{
"title": "الكمية",
"name": "quantity"
},
{
"title": "صورة المنتج",
"name": "image"
}
]
}
]
}
🟠401Unauthorized
Modified at 2025-02-04 11:02:03