docs: generate API reference for 2.12.3 (#14341)

This commit is contained in:
Shahed Nasser
2025-12-17 18:19:46 +02:00
committed by GitHub
parent c0ec54fc15
commit 52e965f411
134 changed files with 7706 additions and 12 deletions

View File

@@ -0,0 +1,2 @@
curl '{backend_url}/admin/locales' \
-H 'Authorization: Bearer {access_token}'

View File

@@ -0,0 +1,2 @@
curl '{backend_url}/admin/locales/fr-FR' \
-H 'Authorization: Bearer {access_token}'

View File

@@ -0,0 +1,2 @@
curl -X POST '{backend_url}/admin/orders/export' \
-H 'Authorization: Bearer {access_token}'

View File

@@ -0,0 +1,2 @@
curl '{backend_url}/admin/price-lists/{id}/prices' \
-H 'Authorization: Bearer {access_token}'

View File

@@ -0,0 +1,2 @@
curl '{backend_url}/admin/translations' \
-H 'Authorization: Bearer {access_token}'

View File

@@ -0,0 +1,16 @@
curl -X POST '{backend_url}/admin/translations/batch' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
-d '{
"create": [
{
"reference": "product",
"reference_id": "prod_123",
"locale_code": "fr-FR",
"translations": {
"title": "Chaussures",
"description": "Des chaussures élégantes."
}
}
]
}'

View File

@@ -0,0 +1,2 @@
curl '{backend_url}/admin/translations/settings' \
-H 'Authorization: Bearer {access_token}'

View File

@@ -0,0 +1,2 @@
curl '{backend_url}/admin/translations/statistics' \
-H 'Authorization: Bearer {access_token}'