{ "info": { "_postman_id": "YOUR_POSTMAN_ID", "name": "Company API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "GET /api/companies", "request": { "method": "GET", "header": [ { "key": "Authorization", "value": "Bearer {{JWT_TOKEN}}", "type": "text" } ], "url": { "raw": "{{API_URL}}/api/companies", "host": [ "{{API_URL}}" ], "path": [ "api", "companies" ] } }, "response": [] }, { "name": "GET /api/companies/:id", "request": { "method": "GET", "header": [ { "key": "Authorization", "value": "Bearer {{JWT_TOKEN}}", "type": "text" } ], "url": { "raw": "{{API_URL}}/api/companies/:id", "host": [ "{{API_URL}}" ], "path": [ "api", "companies", ":id" ], "variable": [ { "key": "id", "value": "" } ] } }, "response": [] }, { "name": "POST /api/companies", "request": { "method": "POST", "header": [ { "key": "Authorization", "value": "Bearer {{JWT_TOKEN}}", "type": "text" } ], "body": { "mode": "raw", "raw": "{\n\t\"name\": \"\"\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "{{API_URL}}/api/companies", "host": [ "{{API_URL}}" ], "path": [ "api", "companies" ] } }, "response": [] }, { "name": "PUT /api/companies/:id", "request": { "method": "PUT", "header": [ { "key": "Authorization", "value": "Bearer {{JWT_TOKEN}}", "type": "text" } ], "body": { "mode": "raw", "raw": "{\n\t\"name\": \"\"\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "{{API_URL}}/api/companies/:id", "host": [ "{{API_URL}}" ], "path": [ "api", "companies", ":id" ], "variable": [ { "key": "id", "value": "" } ] } }, "response": [] }, { "name": "DELETE /api/companies/:id", "request": { "method": "DELETE", "header": [ { "key": "Authorization", "value": "Bearer {{JWT_TOKEN}}", "type": "text" } ], "url": { "raw": "{{API_URL}}/api/companies/:id", "host": [ "{{API_URL}}" ], "path": [ "api", "companies", ":id" ], "variable": [ { "key": "id", "value": "" } ] } }, "response": [] } ] }