27 lines
667 B
TypeScript
27 lines
667 B
TypeScript
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
|
|
|
|
export const getZoneData = async (zoneId: string, organization: string) => {
|
|
console.log("organization: ", organization);
|
|
console.log("zoneId: ", zoneId);
|
|
try {
|
|
const response = await fetch(
|
|
`${url_Backend_dwinzo}/api/v2/A_zone/${zoneId}/${organization}`,
|
|
{
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
}
|
|
);
|
|
|
|
|
|
if (!response.ok) {
|
|
throw new Error("Failed to fetch zoneData");
|
|
}
|
|
|
|
return await response.json();
|
|
} catch (error: any) {
|
|
throw new Error(error.message);
|
|
}
|
|
};
|