{ "opencollection": "1.0.0", "info": { "name": "Uber for Business Codes Requests API", "version": "1.2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Requests", "type": "folder" }, "items": [ { "info": { "name": "Create Ride Estimate", "type": "http" }, "http": { "method": "POST", "url": "https://api.uber.com/v1.2/requests/estimate", "body": { "type": "json", "data": "{}" } }, "docs": "Get an upfront fare estimate and surge pricing details for a ride request before booking." }, { "info": { "name": "Create Ride Request", "type": "http" }, "http": { "method": "POST", "url": "https://api.uber.com/v1.2/requests", "body": { "type": "json", "data": "{}" } }, "docs": "Request a ride on behalf of an Uber user given their desired product, start, and end locations." }, { "info": { "name": "Get Ride Details", "type": "http" }, "http": { "method": "GET", "url": "https://api.uber.com/v1.2/requests/:request_id", "params": [ { "name": "request_id", "value": "", "type": "path", "description": "Unique identifier representing a Request." } ] }, "docs": "Get the real-time status of an ongoing trip." }, { "info": { "name": "Update Ride Request", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.uber.com/v1.2/requests/:request_id", "params": [ { "name": "request_id", "value": "", "type": "path", "description": "Unique identifier representing a Request." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an ongoing request's destination." }, { "info": { "name": "Cancel Ride Request", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.uber.com/v1.2/requests/:request_id", "params": [ { "name": "request_id", "value": "", "type": "path", "description": "Unique identifier representing a Request." } ] }, "docs": "Cancel an ongoing request on behalf of a rider." }, { "info": { "name": "Get Ride Map", "type": "http" }, "http": { "method": "GET", "url": "https://api.uber.com/v1.2/requests/:request_id/map", "params": [ { "name": "request_id", "value": "", "type": "path", "description": "Unique identifier representing a Request." } ] }, "docs": "Get a map with a visual representation of a Request." }, { "info": { "name": "Get Ride Receipt", "type": "http" }, "http": { "method": "GET", "url": "https://api.uber.com/v1.2/requests/:request_id/receipts", "params": [ { "name": "request_id", "value": "", "type": "path", "description": "Unique identifier representing a Request." } ] }, "docs": "Get the receipt information of a completed request." } ] } ], "bundled": true }