📝
PetGuru_Gitbook
  • PetGuru API Document
  • User
    • POST User Signup
    • POST User Login
    • POST User Logout
    • GET User Info
    • GET me
    • Put me
    • POST User Mentor Auth
  • Pet
    • POST Pet Register
    • GET Pet Info
    • PUT Pet Edit
    • DELETE Pet Delete
  • Missing Board
    • GET Missing Posts
    • POST Missing Posts
    • PUT Missing Posts
    • DELETE Missing Posts
    • GET Missing Comments
    • POST Missing Comments
    • PUT Missing Comments
    • DELETE Missing Comments
  • Q&A Board
    • GET QNA Question
    • POST QNA Question
    • PUT QNA Question
    • DELETE QNA Question
    • GET QNA Answer
    • POST QNA Answer
    • PUT QNA Answer
    • DELETE QNA Answer
    • GET QNA Thread
    • POST QNA Thread
    • PUT QNA Thread
    • DELETE QNA Thread
Powered by GitBook
On this page

Was this helpful?

  1. Missing Board

GET Missing Posts

GET Missing Posts

GET https://api.cakes.com/missing/posts

This endpoint allows you to get all missing pet posts

{
  "Missing" : [
    {
      "id": "id",
      "user_id": "user_id",
      "pet_id": "pet_id",
      "status": "status",
      "location": "location",
      "longtitude": "longitude",
      "latitude": "latitude",
      "title": "title"
      "text": "text",
      "image_url": [ { imagePath: ${imagePath} }, { imagePath: ${imagePath} }, ... ]
      "created_at": "date of missing post created",
      "updated_at": "date of missing post updated"
   }]
}
{    "message": "Could not find a missing list."}

PreviousMissing BoardNextPOST Missing Posts

Last updated 3 years ago

Was this helpful?