Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 598 Bytes

urls.md

File metadata and controls

30 lines (21 loc) · 598 Bytes

List All Short Url

Returns array json data urls.

  • URL

    /urls.json

  • Method:

    GET

  • Success Response:

    • Code: 200
      Content: [{"id":1,"original_url":"dsfds.com","created_at":"2018-09-19T10:37:39.992Z","updated_at":"2018-09-19T10:37:39.992Z","short_url":"http://localhost:3000/FxnvWdxDs7a6lwLe","url":"http://localhost:3000/urls/FxnvWdxDs7a6lwLe.json"}]
  • Sample Call:

      $.ajax({
        url: "/urls",
        dataType: "json",
        type : "GET",
        success : function(r) {
          console.log(r);
        }
      });