docs: remove mention of base64 requirement for api keys (#13679)
This commit is contained in:
@@ -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}'
|
||||
@@ -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}'
|
||||
@@ -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 '{
|
||||
|
||||
@@ -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}'
|
||||
@@ -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 '{
|
||||
|
||||
@@ -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}'
|
||||
@@ -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}'
|
||||
@@ -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 '{
|
||||
|
||||
@@ -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}'
|
||||
@@ -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}'
|
||||
@@ -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}'
|
||||
@@ -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}'
|
||||
@@ -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}'
|
||||
Reference in New Issue
Block a user