db-vendo-client/p/dbnav/stop-req.js

17 lines
292 B
JavaScript
Raw Permalink Normal View History

2025-01-08 23:02:57 +00:00
import {getHeaders} from './header.js';
const formatStopReq = (ctx, stopRef) => {
const {profile} = ctx;
return {
endpoint: profile.stopEndpoint,
path: stopRef,
headers: getHeaders('application/x.db.vendo.mob.location.v3+json'),
method: 'get',
};
};
export {
formatStopReq,
};