Create product
documentedCreate a catalog product.
POST /v1/catalogs/productsCatalog Productsno 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://api-m.paypal.com/v1/catalogs/products" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Prefer: return=representation" \
-H "PayPal-Request-Id: {{PAYPAL_REQUEST_ID}}" \
-d '{"id":"{{$id}}","name":"{{$name}}","description":"{{$description}}","type":"{{$type}}","category":"{{$category}}","image_url":"{{$image_url}}","home_url":"{{$home_url}}"}'