feat: get link by id endpoint

This commit is contained in:
Juan Rodriguez
2024-07-12 08:47:08 +02:00
parent a2aa586dae
commit 3050c2b100
3 changed files with 25 additions and 0 deletions
+1
View File
@@ -92,6 +92,7 @@ dokku run bit cli --create-user=Admin
| `/api/ping` | GET | Ping the API to check if it's running | - |
| `/:slug` | GET | Retrieve a link by its slug | - |
| `/api/links` | GET | Retrieve all links | - |
| `/api/links/:id` | GET | Retrieve a link by its ID | - |
| `/api/links` | POST | Create a new link | `{"url": "https://example.com"}` |
| `/api/links/:id` | PUT | Update an existing link by its ID | `{"url": "https://newexample.com"}` |
| `/api/links/:id` | DELETE | Delete a link by its ID | - |