async function getEdgeJob(id: EdgeJobResponse['Id']) {
  try {
    const { data } = await axios.get<EdgeJobResponse>(buildUrl({ id }));
    return data;
  } catch (err) {