61 lines
1.6 KiB
Markdown
61 lines
1.6 KiB
Markdown
---
|
|
name: auth-routes
|
|
description: Handle 5 OpenAPI operation(s) under /auth for the auth route group.
|
|
---
|
|
|
|
# auth API Routes
|
|
|
|
Handle 5 OpenAPI operation(s) under /auth for the auth route group.
|
|
|
|
Use the generated operation tools to make real API calls. Do not invent API responses.
|
|
If a tool reports missing setup, return the exact setup field name to the caller.
|
|
For write, update, or delete operations, state the intended action before calling the tool.
|
|
|
|
## Operations
|
|
|
|
### authentication_challenges_controller_verify
|
|
|
|
- Operation ID: `authentication_challenges_controller_verify`
|
|
- Route: `POST /auth/challenges/{id}/verify`
|
|
- Mode: WRITE
|
|
- Summary: Verify Challenge
|
|
- Parameters:
|
|
- `id` in `path` required
|
|
- Body: JSON request body accepted.
|
|
|
|
### authentication_factors_controller_create
|
|
|
|
- Operation ID: `authentication_factors_controller_create`
|
|
- Route: `POST /auth/factors/enroll`
|
|
- Mode: WRITE
|
|
- Summary: Enroll Factor
|
|
- Body: JSON request body accepted.
|
|
|
|
### authentication_factors_controller_get
|
|
|
|
- Operation ID: `authentication_factors_controller_get`
|
|
- Route: `GET /auth/factors/{id}`
|
|
- Mode: READ
|
|
- Summary: Get Factor
|
|
- Parameters:
|
|
- `id` in `path` required
|
|
|
|
### authentication_factors_controller_delete
|
|
|
|
- Operation ID: `authentication_factors_controller_delete`
|
|
- Route: `DELETE /auth/factors/{id}`
|
|
- Mode: WRITE
|
|
- Summary: Delete Factor
|
|
- Parameters:
|
|
- `id` in `path` required
|
|
|
|
### authentication_factors_controller_challenge
|
|
|
|
- Operation ID: `authentication_factors_controller_challenge`
|
|
- Route: `POST /auth/factors/{id}/challenge`
|
|
- Mode: WRITE
|
|
- Summary: Challenge Factor
|
|
- Parameters:
|
|
- `id` in `path` required
|
|
- Body: JSON request body accepted.
|