2022-10-30 16:28:14 +08:00
|
|
|
<script>
|
|
|
|
import CodeBlock from "@/components/base/CodeBlock.svelte";
|
2024-09-30 00:23:19 +08:00
|
|
|
import CommonHelper from "@/utils/CommonHelper";
|
2022-10-30 16:28:14 +08:00
|
|
|
|
2023-08-15 02:20:49 +08:00
|
|
|
export let collection;
|
2022-10-30 16:28:14 +08:00
|
|
|
|
2024-09-30 00:23:19 +08:00
|
|
|
let responseTab = 200;
|
2022-10-30 16:28:14 +08:00
|
|
|
let responses = [];
|
|
|
|
|
|
|
|
$: responses = [
|
|
|
|
{
|
2024-09-30 00:23:19 +08:00
|
|
|
code: 200,
|
|
|
|
body: JSON.stringify(
|
|
|
|
{
|
|
|
|
otpId: CommonHelper.randomString(15),
|
|
|
|
},
|
|
|
|
null,
|
|
|
|
2,
|
|
|
|
),
|
2022-10-30 16:28:14 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
code: 400,
|
|
|
|
body: `
|
|
|
|
{
|
|
|
|
"code": 400,
|
2024-09-30 00:23:19 +08:00
|
|
|
"message": "An error occurred while validating the submitted data.",
|
2022-10-30 16:28:14 +08:00
|
|
|
"data": {
|
|
|
|
"email": {
|
2024-09-30 00:23:19 +08:00
|
|
|
"code": "validation_is_email",
|
|
|
|
"message": "Must be a valid email address."
|
2022-10-30 16:28:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
},
|
2024-09-30 00:23:19 +08:00
|
|
|
{
|
|
|
|
code: 429,
|
|
|
|
body: `
|
|
|
|
{
|
|
|
|
"code": 429,
|
|
|
|
"message": "You've send too many OTP requests, please try again later.",
|
|
|
|
"data": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
},
|
2022-10-30 16:28:14 +08:00
|
|
|
];
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="alert alert-success">
|
|
|
|
<strong class="label label-primary">POST</strong>
|
|
|
|
<div class="content">
|
|
|
|
<p>
|
2024-09-30 00:23:19 +08:00
|
|
|
/api/collections/<strong>{collection.name}</strong>/request-otp
|
2022-10-30 16:28:14 +08:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="section-title">Body Parameters</div>
|
|
|
|
<table class="table-compact table-border m-b-base">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Param</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th width="50%">Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="inline-flex">
|
|
|
|
<span class="label label-success">Required</span>
|
|
|
|
<span>email</span>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="label">String</span>
|
|
|
|
</td>
|
2024-09-30 00:23:19 +08:00
|
|
|
<td>The auth record email address to send the OTP request (if exists).</td>
|
2022-10-30 16:28:14 +08:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div class="section-title">Responses</div>
|
|
|
|
<div class="tabs">
|
2023-09-01 17:44:43 +08:00
|
|
|
<div class="tabs-header compact combined left">
|
2022-10-30 16:28:14 +08:00
|
|
|
{#each responses as response (response.code)}
|
|
|
|
<button
|
|
|
|
class="tab-item"
|
|
|
|
class:active={responseTab === response.code}
|
|
|
|
on:click={() => (responseTab = response.code)}
|
|
|
|
>
|
|
|
|
{response.code}
|
|
|
|
</button>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
<div class="tabs-content">
|
|
|
|
{#each responses as response (response.code)}
|
|
|
|
<div class="tab-item" class:active={responseTab === response.code}>
|
|
|
|
<CodeBlock content={response.body} />
|
|
|
|
</div>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</div>
|