List orders
documentedRetrieve a list of orders for a seller.
GET /orders/v0/ordersOrdersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://sellingpartnerapi-na.amazon.com/orders/v0/orders?MarketplaceIds={{$marketplace_ids}}&CreatedAfter={{$created_after}}&MaxResultsPerPage={{$max_results_per_page}}" \
-X GET \
-H "x-amz-access-token: {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: AWS4-HMAC-SHA256 Credential={{$amz_access_key}}/{{$amz_date_short}}/us-east-1/execute-api/aws4_request, SignedHeaders=host;x-amz-date, Signature={{$amz_signature}}" \
-H "x-amz-date: {{$amz_date}}" \
-H "Host: sellingpartnerapi-na.amazon.com"