List packaging bundles for a station
GET
/partners/{id}/locations/{location_id}/stations/{station_id}/bundles
const url = 'https://example.com/partners/example/locations/example/stations/example/bundles';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/partners/example/locations/example/stations/example/bundlesParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
location_id
required
string
station_id
required
string
Responses
Section titled “Responses”Media typeapplication/json
Array<object>
object
Example
[ { "size": "NaN" }]