docs: remove mention of base64 requirement for api keys (#13679)

This commit is contained in:
Shahed Nasser
2025-10-03 14:10:16 +03:00
committed by GitHub
parent dd4b3315f3
commit fcb977a989
716 changed files with 1082 additions and 1091 deletions

View File

@@ -1,3 +1,3 @@
curl -X POST '{backend_url}/store/carts/{id}/customer' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,3 +1,3 @@
curl '{backend_url}/store/customers/me' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,5 +1,5 @@
curl -X POST '{backend_url}/store/customers/me' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
-H 'x-publishable-api-key: {your_publishable_api_key}' \
--data-raw '{

View File

@@ -1,3 +1,3 @@
curl '{backend_url}/store/customers/me/addresses' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,5 +1,5 @@
curl -X POST '{backend_url}/store/customers/me/addresses' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
-H 'x-publishable-api-key: {your_publishable_api_key}' \
--data-raw '{

View File

@@ -1,3 +1,3 @@
curl -X DELETE '{backend_url}/store/customers/me/addresses/{address_id}' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,3 +1,3 @@
curl '{backend_url}/store/customers/me/addresses/{address_id}' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,5 +1,5 @@
curl -X POST '{backend_url}/store/customers/me/addresses/{address_id}' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
-H 'x-publishable-api-key: {your_publishable_api_key}' \
--data-raw '{

View File

@@ -1,3 +1,3 @@
curl '{backend_url}/store/gift-cards/{idOrCode}' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,3 +1,3 @@
curl -X POST '{backend_url}/store/gift-cards/{idOrCode}/redeem' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,3 +1,3 @@
curl '{backend_url}/store/orders' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,3 +1,3 @@
curl -X POST '{backend_url}/store/orders/{id}/transfer/cancel' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'

View File

@@ -1,3 +1,3 @@
curl -X POST '{backend_url}/store/orders/{id}/transfer/request' \
-H 'Authorization: Bearer {access_token}' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'x-publishable-api-key: {your_publishable_api_key}'