Request
GET /v1/donated/history/6613ba89748dda31b77e9a54 HTTP/1.1 Host: mimillandcity-dev.api.mimiland.io mm-client-id: mml Content-Type: application/json Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI mm-user-id: 65326348d995b4f348456dce
const myHeaders = new Headers(); myHeaders.append("mm-client-id", "mml"); myHeaders.append("Content-Type", "application/json"); myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI"); myHeaders.append("mm-user-id", "65326348d995b4f348456dce"); const requestOptions = { method: "GET", headers: myHeaders, redirect: "follow" }; fetch("https://mimillandcity-dev.api.mimiland.io/v1/donated/history/6613ba89748dda31b77e9a54", requestOptions) .then((response) => response.text()) .then((result) => console.log(result)) .catch((error) => console.error(error));
Last updated 9 months ago