{ "opencollection": "1.0.0", "info": { "name": "Wakeo Visibility Shipments API", "version": "1.0-modeled" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.wakeo.co/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Shipments", "type": "folder" }, "items": [ { "info": { "name": "List shipments", "type": "http" }, "http": { "method": "GET", "url": "https://api.wakeo.co/v1/shipments", "params": [ { "name": "status", "value": "", "type": "query", "description": "Filter by shipment status (e.g. in_transit, delivered)." }, { "name": "mode", "value": "", "type": "query", "description": "Filter by transport mode (sea, air, road, rail, parcel)." }, { "name": "limit", "value": "", "type": "query" } ] }, "docs": "Lists tracked shipments for the authenticated account. MODELED - query parameters and response shape are reconstructed, not confirmed." }, { "info": { "name": "Create a shipment (transport order)", "type": "http" }, "http": { "method": "POST", "url": "https://api.wakeo.co/v1/shipments", "body": { "type": "json", "data": "{}" } }, "docs": "Registers a new transport order for Wakeo to track and predict. MODELED - request body reconstructed from documented capabilities." }, { "info": { "name": "Get a shipment", "type": "http" }, "http": { "method": "GET", "url": "https://api.wakeo.co/v1/shipments/:shipmentId", "params": [ { "name": "shipmentId", "value": "", "type": "path", "description": "The identifier of the shipment." } ] }, "docs": "Retrieves a single shipment by its identifier. MODELED." }, { "info": { "name": "Stop tracking a shipment", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.wakeo.co/v1/shipments/:shipmentId", "params": [ { "name": "shipmentId", "value": "", "type": "path", "description": "The identifier of the shipment." } ] }, "docs": "Removes a shipment from active tracking. MODELED." } ] } ], "bundled": true }