{ "info": { "_postman_id": "nelsius-pay-merchants", "name": "Nelsius Pay - Module 3: Marchands", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "3.1 - Profil Marchand", "item": [ { "name": "GET Profil marchand", "request": { "method": "GET", "header": [ { "key": "Authorization", "value": "Bearer {{merchant_token}}" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "{{base_url}}/api/merchants/profile", "host": ["{{base_url}}"], "path": ["api", "merchants", "profile"] } } }, { "name": "PUT Mettre à jour profil", "request": { "method": "PUT", "header": [ { "key": "Authorization", "value": "Bearer {{merchant_token}}" }, { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"business_name\": \"Ma Boutique\",\n \"business_description\": \"Description de ma boutique\",\n \"business_website\": \"https://maboutique.com\",\n \"business_address\": \"123 Rue Principale\",\n \"business_city\": \"Douala\",\n \"business_country\": \"CM\"\n}" }, "url": { "raw": "{{base_url}}/api/merchants/profile", "host": ["{{base_url}}"], "path": ["api", "merchants", "profile"] } } }, { "name": "POST Upload logo", "request": { "method": "POST", "header": [ { "key": "Authorization", "value": "Bearer {{merchant_token}}" } ], "body": { "mode": "formdata", "formdata": [ { "key": "logo", "type": "file", "src": "/chemin/vers/logo.jpg" } ] }, "url": { "raw": "{{base_url}}/api/merchants/profile/upload-logo", "host": ["{{base_url}}"], "path": ["api", "merchants", "profile", "upload-logo"] } } }, { "name": "GET Statistiques", "request": { "method": "GET", "header": [ { "key": "Authorization", "value": "Bearer {{merchant_token}}" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "{{base_url}}/api/merchants/stats", "host": ["{{base_url}}"], "path": ["api", "merchants", "stats"] } } } ] }, { "name": "3.2 - Produits", "item": [ { "name": "GET Liste produits", "request": { "method": "GET", "header": [ { "key": "Authorization", "value": "Bearer {{merchant_token}}" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "{{base_url}}/api/merchants/products", "host": ["{{base_url}}"], "path": ["api", "merchants", "products"] } } }, { "name": "POST Créer produit", "request": { "method": "POST", "header": [ { "key": "Authorization", "value": "Bearer {{merchant_token}}" }, { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"Téléphone Android\",\n \"description\": \"Téléphone Android haut de gamme\",\n \"sku\": \"ANDROID-001\",\n \"price\": 150000,\n \"currency\": \"XAF\",\n \"cost_price\": 120000,\n \"stock_quantity\": 50,\n \"low_stock_threshold\": 5,\n \"category\": \"Électronique\",\n \"subcategory\": \"Téléphones\",\n \"images\": [],\n \"attributes\": {\"couleur\": \"noir\", \"mémoire\": \"128GB\"},\n \"is_active\": true\n}" }, "url": { "raw": "{{base_url}}/api/merchants/products", "host": ["{{base_url}}"], "path": ["api", "merchants", "products"] } } } ] } ], "variable": [ { "key": "base_url", "value": "http://localhost:8000" }, { "key": "merchant_token", "value": "" } ] }