Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 845 Bytes

README.md

File metadata and controls

46 lines (40 loc) · 845 Bytes

Get all posts from database

GET {{BASE_URL}}

Sample respone

{
  "blogs": [
    {
      "_id": "659d9db9cfbc5061b350bed9",
      "heading": "Testing2",
      "field": "Test2",
      "content": "Testing server 2",
      "author": "Eugene Amedior",
      "date": "2024-06-01T00:00:00.000Z",
      "createdAt": "2024-01-09T19:25:45.880Z",
      "updatedAt": "2024-01-09T19:25:45.880Z",
      "__v": 0
    }
  ]
}

Find one post using database id

GET {{BASE_URL}}/659d9db9cfbc5061b350bed9

Sample respone

{
  "_id": "659d9db9cfbc5061b350bed9",
  "heading": "Testing2",
  "field": "Test2",
  "content": "Testing server 2",
  "author": "Eugene Amedior",
  "date": "2024-06-01T00:00:00.000Z",
  "createdAt": "2024-01-09T19:25:45.880Z",
  "updatedAt": "2024-01-09T19:25:45.880Z",
  "__v": 0
}