Here is my code:
axios({
  method: "GET",
  url: "http://112.196.108.244:9002/api/survey/question/get-question/not-answered/?surveyId=",
  headers: {
    "content-type": "application/json",
    Authorization: `Bearer token-key`,
  },
  body: {
    id: "68367859",
    isMandatory: "false",
    paginationFilter: { limit: 10, offset: 0, order: "DESC" },
    filterInput: {
      locationIds: ["1", "4011403", "4012144"],
      categoryIds: [
        "twoSubCategories/7898496",
        "domains/7895290",
        "subCategories/7896491",
      ],
    },
  },
})
  .then((response) => {
    console.log("response", response);
  })
  .catch((error) => {
    console.log("error", error.response.data);
  });
this code gives me error: The error in console is-
details: "uri=/api/survey/question/get-question/not-answered/"
message: "document key  is not valid."
status: 400
 
     
    