feat: completed docs for to be depreciated api endpoints

This commit is contained in:
=
2025-09-15 15:00:10 +05:30
parent 8aea5f42f6
commit 30d1af14b1
115 changed files with 415 additions and 74 deletions

View File

@@ -0,0 +1,4 @@
---
title: "Create Project"
openapi: "POST /api/v1/projects"
---

View File

@@ -0,0 +1,8 @@
---
title: "Delete Project"
openapi: "DELETE /api/v1/projects/{projectId}"
---
<Warning>
This operation is irreversible. All data associated with the project will be deleted. Please use with caution.
</Warning>

View File

@@ -0,0 +1,4 @@
---
title: "Get Project By Slug"
openapi: "GET /api/v1/projects/slug/{slug}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Project"
openapi: "GET /api/v1/projects/{projectId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Roll Back to Snapshot"
openapi: "POST /api/v1/secret-snapshot/{secretSnapshotId}/rollback"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Snapshots"
openapi: "GET /api/v1/projects/{projectId}/secret-snapshots"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update Project"
openapi: "PATCH /api/v1/projects/{projectId}"
---