Delete partner location station
DELETE
/partners/{id}/locations/{location_id}/stations/{station_id}
const url = 'https://example.com/partners/example/locations/example/stations/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/partners/example/locations/example/stations/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
location_id
required
string
station_id
required
string