{ "opencollection": "1.0.0", "info": { "name": "Turvo Public Accounts Shipments API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Shipments", "type": "folder" }, "items": [ { "info": { "name": "List shipments", "type": "http" }, "http": { "method": "GET", "url": "https://publicapi.turvo.com/v1/shipments/list", "params": [ { "name": "start", "value": "", "type": "query", "description": "Zero-based offset of the first record to return." }, { "name": "pageSize", "value": "", "type": "query", "description": "Maximum number of records to return per page." }, { "name": "status", "value": "", "type": "query", "description": "Filter by shipment lifecycle status code." } ] }, "docs": "Lists shipments in the tenant, with pagination and filtering." }, { "info": { "name": "Create a shipment", "type": "http" }, "http": { "method": "POST", "url": "https://publicapi.turvo.com/v1/shipments", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new shipment (load) with stops, items, and costs." }, { "info": { "name": "Retrieve a shipment", "type": "http" }, "http": { "method": "GET", "url": "https://publicapi.turvo.com/v1/shipments/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The Turvo resource ID." } ] }, "docs": "Retrieves a single shipment by its Turvo ID." }, { "info": { "name": "Update a shipment", "type": "http" }, "http": { "method": "PUT", "url": "https://publicapi.turvo.com/v1/shipments/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The Turvo resource ID." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing shipment - stops, status, carrier, or costs." }, { "info": { "name": "Cancel a shipment", "type": "http" }, "http": { "method": "DELETE", "url": "https://publicapi.turvo.com/v1/shipments/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The Turvo resource ID." } ] }, "docs": "Cancels (soft-deletes) a shipment." } ] } ], "bundled": true }