docs: remove mention of base64 requirement for api keys (#13679)
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/api-keys' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/api-keys' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"title": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/api-keys/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/api-keys/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/api-keys/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"title": "{value}"
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/api-keys/{id}/revoke' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/api-keys/{id}/sales-channels' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/campaigns' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/campaigns' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"name": "Gunner",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/campaigns/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/campaigns/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/campaigns/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"description": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/campaigns/{id}/promotions' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/claims' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/claims' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"type": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/claims/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/cancel' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/claim-items' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/claim-items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/claim-items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/inbound/items' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/inbound/items/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/inbound/items/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/inbound/items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/inbound/shipping-method' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"shipping_option_id": "{value}"
|
||||
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/inbound/shipping-method/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/inbound/shipping-method/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/inbound/shipping-method/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/outbound/items' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/outbound/items/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/outbound/items/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/outbound/items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/outbound/shipping-method' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"shipping_option_id": "{value}"
|
||||
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/outbound/shipping-method/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/outbound/shipping-method/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/outbound/shipping-method/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/claims/{id}/request' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/claims/{id}/request' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/collections' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/collections' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"title": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/collections/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/collections/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/collections/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"metadata": {}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/collections/{id}/products' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/currencies' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/currencies/{code}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/customer-groups' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/customer-groups' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"name": "Solon",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/customer-groups/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/customer-groups/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/customer-groups/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"name": "Corbin",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/customer-groups/{id}/customers' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/customers' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/customers' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"email": "Tomas.Toy16@yahoo.com",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/customers/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/customers/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/customers/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"email": "Daren_Rodriguez-Rutherford93@gmail.com",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/customers/{id}/addresses' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/customers/{id}/addresses' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"address_name": "{value}",
|
||||
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/customers/{id}/addresses/{address_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/customers/{id}/addresses/{address_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/customers/{id}/addresses/{address_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/customers/{id}/addresses/{address_id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"address_name": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/customers/{id}/customer-groups' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/draft-orders' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"sales_channel_id": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/draft-orders/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/draft-orders/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/convert-to-order' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/draft-orders/{id}/edit' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/confirm' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/items' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/items/item/{item_id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"quantity": 0
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/draft-orders/{id}/edit/items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"quantity": 39
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/draft-orders/{id}/edit/promotions' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/promotions' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"promo_codes": [
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/request' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/shipping-methods' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"shipping_option_id": "{value}"
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/draft-orders/{id}/edit/shipping-methods/method/{method_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/shipping-methods/method/{method_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/draft-orders/{id}/edit/shipping-methods/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/draft-orders/{id}/edit/shipping-methods/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"shipping_option_id": "{value}"
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/exchanges' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"order_id": "{value}",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/exchanges/{id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/cancel' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/inbound/items' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/inbound/items/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/inbound/items/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/inbound/items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/inbound/shipping-method' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"shipping_option_id": "{value}"
|
||||
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/inbound/shipping-method/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/inbound/shipping-method/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/inbound/shipping-method/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/outbound/items' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/outbound/items/{action_id}' \ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/outbound/items/{action_id}' \ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/outbound/items/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,5 +1,5 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/outbound/shipping-method' \
|
||||
-H 'Authorization: Bearer {access_token}' \
|
||||
-H 'Authorization: Bearer {jwt_token}' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"shipping_option_id": "{value}"
|
||||
|
||||
@@ -1 +1 @@
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/outbound/shipping-method/{action_id}'\ -H 'Authorization: Bearer {access_token}'
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/outbound/shipping-method/{action_id}'\ -H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/outbound/shipping-method/{action_id}' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X DELETE '{backend_url}/admin/exchanges/{id}/request' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl -X POST '{backend_url}/admin/exchanges/{id}/request' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/fulfillment-providers' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
@@ -1,2 +1,2 @@
|
||||
curl '{backend_url}/admin/fulfillment-providers/{id}/options' \
|
||||
-H 'Authorization: Bearer {access_token}'
|
||||
-H 'Authorization: Bearer {jwt_token}'
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user