feat: updated docs with new endpoints

This commit is contained in:
=
2025-11-11 16:17:14 +05:30
parent 5eb67aefae
commit 45b89f592e
17 changed files with 67 additions and 12 deletions

View File

@@ -0,0 +1,4 @@
---
title: "Get Identity by ID"
openapi: "GET /api/v1/projects/{projectId}/identity-memberships/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create Identity Membership"
openapi: "POST /api/v1/projects/{projectId}/memberships/identities/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete Identity Membership"
openapi: "DELETE /api/v1/projects/{projectId}/memberships/identities/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get Identity by ID"
openapi: "GET /api/v1/projects/{projectId}/memberships/identities/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List Identity Memberships"
openapi: "GET /api/v1/projects/{projectId}/memberships/identities"
---

View File

@@ -0,0 +1,4 @@
---
title: "Update Identity Membership"
openapi: "PATCH /api/v1/projects/{projectId}/memberships/identities/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create Identity"
openapi: "POST /api/v1/projects/{projectId}/identities"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete Identity"
openapi: "DELETE /api/v1/projects/{projectId}/identities/{identityId}"
---

View File

@@ -1,4 +1,4 @@
---
title: "Get Identity by ID"
openapi: "GET /api/v1/projects/{projectId}/identity-memberships/{identityId}"
title: "Get Identity By Id"
openapi: "GET /api/v1/projects/{projectId}/identities/{identityId}"
---

View File

@@ -0,0 +1,4 @@
---
title: "List Identity"
openapi: "POST /api/v1/projects/{projectId}/identities"
---

View File

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