{"templateId":"markdown","sharedDataIds":{},"props":{"metadata":{"markdoc":{"tagList":["tabs","tab"]},"type":"markdown"},"seo":{"title":"Reefpay Docs","description":"Reefpay is the groundbreaking payment gateway that lets you integrate with the future of payments.","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"reset-a-user-password","__idx":0},"children":["Reset a user password"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"prerequisites","__idx":1},"children":["Prerequisites"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The user's login email (username)"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Either the current password or a one-time password (OTP) obtained through the forgot-password flow"]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"password-requirements","__idx":2},"children":["Password requirements"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"align":"left","data-label":"Rule"},"children":["Rule"]},{"$$mdtype":"Tag","name":"th","attributes":{"align":"left","data-label":"Constraint"},"children":["Constraint"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["Minimum length"]},{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["12 characters"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["Maximum length"]},{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["128 characters"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["Format"]},{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["Use a strong passphrase or complex password"]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"option-a-change-password-known-current-password","__idx":3},"children":["Option A: Change password (known current password)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Use this when the user knows their current password and wants to set a new one."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-1-send-the-password-update","__idx":4},"children":["Step 1: Send the password update"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Send ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PATCH /v1/users/me/passwords"]}," with Basic Auth (username + current password)."]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"curl","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"shell","header":{"controls":{"copy":{}}},"source":"curl -X PATCH \\\n  https://api.dev.paradisegateway.net/v1/users/me/passwords \\\n  -u \"john.doe@example.com:current-password-here\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"user_name\": \"john.doe@example.com\",\n    \"current_password\": \"Meat-Said-Whispered-Plant6-One\",\n    \"new_password\": \"Rocky-Change-Thread-Tank1-Slowly\"\n  }'\n","lang":"shell"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Python","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"python","header":{"controls":{"copy":{}}},"source":"import requests\n\nresp = requests.patch(\n    \"https://api.dev.paradisegateway.net/v1/users/me/passwords\",\n    auth=(\"john.doe@example.com\", \"Meat-Said-Whispered-Plant6-One\"),\n    headers={\"Content-Type\": \"application/json\"},\n    json={\n        \"user_name\": \"john.doe@example.com\",\n        \"current_password\": \"Meat-Said-Whispered-Plant6-One\",\n        \"new_password\": \"Rocky-Change-Thread-Tank1-Slowly\",\n    },\n)\nprint(resp.json())\n","lang":"python"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"JavaScript","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"javascript","header":{"controls":{"copy":{}}},"source":"const credentials = btoa(\"john.doe@example.com:Meat-Said-Whispered-Plant6-One\");\nconst resp = await fetch(\n  \"https://api.dev.paradisegateway.net/v1/users/me/passwords\",\n  {\n    method: \"PATCH\",\n    headers: {\n      \"Content-Type\": \"application/json\",\n      Authorization: `Basic ${credentials}`,\n    },\n    body: JSON.stringify({\n      user_name: \"john.doe@example.com\",\n      current_password: \"Meat-Said-Whispered-Plant6-One\",\n      new_password: \"Rocky-Change-Thread-Tank1-Slowly\",\n    }),\n  }\n);\nconsole.log(await resp.json());\n","lang":"javascript"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"C#","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"csharp","header":{"controls":{"copy":{}}},"source":"using var client = new HttpClient();\nvar authBytes = System.Text.Encoding.UTF8.GetBytes(\n    \"john.doe@example.com:Meat-Said-Whispered-Plant6-One\");\nclient.DefaultRequestHeaders.Authorization =\n    new System.Net.Http.Headers.AuthenticationHeaderValue(\n        \"Basic\", Convert.ToBase64String(authBytes));\n\nvar payload = new\n{\n    user_name = \"john.doe@example.com\",\n    current_password = \"Meat-Said-Whispered-Plant6-One\",\n    new_password = \"Rocky-Change-Thread-Tank1-Slowly\"\n};\nvar resp = await client.PatchAsJsonAsync(\n    \"https://api.dev.paradisegateway.net/v1/users/me/passwords\", payload);\nConsole.WriteLine(await resp.Content.ReadAsStringAsync());\n","lang":"csharp"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Java","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"java","header":{"controls":{"copy":{}}},"source":"HttpClient client = HttpClient.newHttpClient();\nString auth = Base64.getEncoder().encodeToString(\n    \"john.doe@example.com:Meat-Said-Whispered-Plant6-One\".getBytes());\nString body = \"\"\"\n    {\n      \"user_name\": \"john.doe@example.com\",\n      \"current_password\": \"Meat-Said-Whispered-Plant6-One\",\n      \"new_password\": \"Rocky-Change-Thread-Tank1-Slowly\"\n    }\n    \"\"\";\nHttpRequest request = HttpRequest.newBuilder()\n    .uri(URI.create(\n        \"https://api.dev.paradisegateway.net/v1/users/me/passwords\"))\n    .header(\"Content-Type\", \"application/json\")\n    .header(\"Authorization\", \"Basic \" + auth)\n    .method(\"PATCH\", HttpRequest.BodyPublishers.ofString(body)).build();\nHttpResponse<String> resp = client.send(request,\n    HttpResponse.BodyHandlers.ofString());\nSystem.out.println(resp.body());\n","lang":"java"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Go","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"go","header":{"controls":{"copy":{}}},"source":"payload := strings.NewReader(`{\n  \"user_name\": \"john.doe@example.com\",\n  \"current_password\": \"Meat-Said-Whispered-Plant6-One\",\n  \"new_password\": \"Rocky-Change-Thread-Tank1-Slowly\"\n}`)\nreq, _ := http.NewRequest(\"PATCH\",\n    \"https://api.dev.paradisegateway.net/v1/users/me/passwords\", payload)\nreq.Header.Set(\"Content-Type\", \"application/json\")\nreq.SetBasicAuth(\"john.doe@example.com\", \"Meat-Said-Whispered-Plant6-One\")\nresp, _ := http.DefaultClient.Do(req)\ndefer resp.Body.Close()\nbody, _ := io.ReadAll(resp.Body)\nfmt.Println(string(body))\n","lang":"go"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"PHP","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"php","header":{"controls":{"copy":{}}},"source":"$ch = curl_init(\"https://api.dev.paradisegateway.net/v1/users/me/passwords\");\ncurl_setopt_array($ch, [\n    CURLOPT_RETURNTRANSFER => true,\n    CURLOPT_CUSTOMREQUEST => \"PATCH\",\n    CURLOPT_USERPWD => \"john.doe@example.com:Meat-Said-Whispered-Plant6-One\",\n    CURLOPT_HTTPHEADER => [\"Content-Type: application/json\"],\n    CURLOPT_POSTFIELDS => json_encode([\n        \"user_name\" => \"john.doe@example.com\",\n        \"current_password\" => \"Meat-Said-Whispered-Plant6-One\",\n        \"new_password\" => \"Rocky-Change-Thread-Tank1-Slowly\",\n    ]),\n]);\necho curl_exec($ch); curl_close($ch);\n","lang":"php"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Ruby","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"ruby","header":{"controls":{"copy":{}}},"source":"require \"net/http\"; require \"json\"\nuri = URI(\"https://api.dev.paradisegateway.net/v1/users/me/passwords\")\nreq = Net::HTTP::Patch.new(uri, { \"Content-Type\" => \"application/json\" })\nreq.basic_auth(\"john.doe@example.com\", \"Meat-Said-Whispered-Plant6-One\")\nreq.body = {\n  user_name: \"john.doe@example.com\",\n  current_password: \"Meat-Said-Whispered-Plant6-One\",\n  new_password: \"Rocky-Change-Thread-Tank1-Slowly\",\n}.to_json\nresp = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }\nputs resp.body\n","lang":"ruby"},"children":[]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"response","__idx":5},"children":["Response"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["A ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["200"]}," response confirms the password was changed."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"status\": true,\n  \"correlation_id\": \"e5f6a7b8-c9d0-1234-ef01-23456789abcd\"\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"option-b-forgot-password-otp-flow","__idx":6},"children":["Option B: Forgot password (OTP flow)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Use this when the user has forgotten their password. This is a two-step process."]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"---\nconfig:\n  theme: 'neutral'\n---\nsequenceDiagram\n    participant User\n    participant App as Your App\n    participant API as ","diagramHtml":"<svg id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 650px;\" viewBox=\"-50 -10 650 171\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"400\" y=\"85\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"475\" y=\"117.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\"></tspan></text></g><g><rect x=\"200\" y=\"85\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"App\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"275\" y=\"117.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Your App</tspan></text></g><g><rect x=\"0\" y=\"85\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"User\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"117.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">User</tspan></text></g><g><line id=\"actor2\" x1=\"475\" y1=\"65\" x2=\"475\" y2=\"85\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"API\" data-et=\"life-line\" data-id=\"API\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"API\"><rect x=\"400\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"475\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\"></tspan></text></g></g><g><line id=\"actor1\" x1=\"275\" y1=\"65\" x2=\"275\" y2=\"85\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"App\" data-et=\"life-line\" data-id=\"App\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"App\"><rect x=\"200\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"App\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"275\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Your App</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"85\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"User\" data-et=\"life-line\" data-id=\"User\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"User\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"User\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">User</tspan></text></g></g><style>#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b{font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#000000;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .error-icon{fill:#552222;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .error-text{fill:#552222;stroke:#552222;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-thickness-normal{stroke-width:1px;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-thickness-thick{stroke-width:3.5px;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-pattern-solid{stroke-dasharray:0;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-pattern-dashed{stroke-dasharray:3;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .edge-pattern-dotted{stroke-dasharray:2;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .marker{fill:#666;stroke:#666;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .marker.cross{stroke:#666;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b svg{font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b p{margin:0;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .actor{stroke:hsl(0, 0%, 83%);fill:#eee;stroke-width:1;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b rect.note[data-look=\"neo\"]{stroke:#999;fill:#666;filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b text.actor&gt;tspan{fill:#333;stroke:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .actor-line{stroke:hsl(0, 0%, 83%);}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .sequenceNumber{fill:white;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [id$=\"-sequencenumber\"]{fill:#333;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .messageText{fill:#333;stroke:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .labelBox{stroke:hsl(0, 0%, 83%);fill:#eee;filter:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .labelText,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .labelText&gt;tspan{fill:#333;stroke:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .loopText,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .loopText&gt;tspan{fill:#333;stroke:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .sectionTitle,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .sectionTitle&gt;tspan{fill:#333;stroke:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:hsl(0, 0%, 83%);fill:hsl(0, 0%, 83%);}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .note{stroke:#999;fill:#666;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .noteText,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .noteText&gt;tspan{fill:#fff;stroke:none;font-weight:normal;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .activation0{fill:#f4f4f4;stroke:#666;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .activation1{fill:#f4f4f4;stroke:#666;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .activation2{fill:#f4f4f4;stroke:#666;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .actorPopupMenu{position:absolute;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .actorPopupMenuPanel{position:absolute;fill:#eee;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .actor-man circle,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b line{fill:#eee;stroke-width:2px;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#999;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b .node .neo-node{stroke:#999;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node rect,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].cluster rect,#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node polygon{stroke:url(#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node path{stroke:url(#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-gradient);stroke-width:1px;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node .neo-line path{stroke:#999;filter:none;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node circle{stroke:url(#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b :root{--mermaid-font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;}#diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b :root{--mermaid-font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-fa002016625d5f6814d62bcb4f46368b948f9b4c55dc9d5cf3cd2d9416607b9b-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs></svg>","diagramHtmlDark":"<svg id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 650px;\" viewBox=\"-50 -10 650 171\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"400\" y=\"85\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"475\" y=\"117.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\"></tspan></text></g><g><rect x=\"200\" y=\"85\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"App\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"275\" y=\"117.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Your App</tspan></text></g><g><rect x=\"0\" y=\"85\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"User\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"117.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">User</tspan></text></g><g><line id=\"actor2\" x1=\"475\" y1=\"65\" x2=\"475\" y2=\"85\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"API\" data-et=\"life-line\" data-id=\"API\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"API\"><rect x=\"400\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"475\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\"></tspan></text></g></g><g><line id=\"actor1\" x1=\"275\" y1=\"65\" x2=\"275\" y2=\"85\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"App\" data-et=\"life-line\" data-id=\"App\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"App\"><rect x=\"200\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"App\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"275\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Your App</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"85\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"User\" data-et=\"life-line\" data-id=\"User\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"User\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"User\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">User</tspan></text></g></g><style>#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3{font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#000000;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .error-icon{fill:#552222;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .error-text{fill:#552222;stroke:#552222;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-thickness-normal{stroke-width:1px;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-thickness-thick{stroke-width:3.5px;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-pattern-solid{stroke-dasharray:0;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .marker{fill:#666;stroke:#666;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .marker.cross{stroke:#666;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 svg{font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 p{margin:0;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .actor{stroke:hsl(0, 0%, 83%);fill:#eee;stroke-width:1;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 rect.note[data-look=\"neo\"]{stroke:#999;fill:#666;filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 text.actor&gt;tspan{fill:#333;stroke:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .actor-line{stroke:hsl(0, 0%, 83%);}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .sequenceNumber{fill:white;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [id$=\"-sequencenumber\"]{fill:#333;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .messageText{fill:#333;stroke:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .labelBox{stroke:hsl(0, 0%, 83%);fill:#eee;filter:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .labelText,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .labelText&gt;tspan{fill:#333;stroke:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .loopText,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .loopText&gt;tspan{fill:#333;stroke:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .sectionTitle,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .sectionTitle&gt;tspan{fill:#333;stroke:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:hsl(0, 0%, 83%);fill:hsl(0, 0%, 83%);}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .note{stroke:#999;fill:#666;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .noteText,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .noteText&gt;tspan{fill:#fff;stroke:none;font-weight:normal;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .activation0{fill:#f4f4f4;stroke:#666;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .activation1{fill:#f4f4f4;stroke:#666;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .activation2{fill:#f4f4f4;stroke:#666;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .actorPopupMenu{position:absolute;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .actorPopupMenuPanel{position:absolute;fill:#eee;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .actor-man circle,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 line{fill:#eee;stroke-width:2px;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#999;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 .node .neo-node{stroke:#999;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node rect,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].cluster rect,#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node polygon{stroke:url(#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node path{stroke:url(#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-gradient);stroke-width:1px;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node .neo-line path{stroke:#999;filter:none;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node circle{stroke:url(#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;}#diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",\"Redocly Mermaid CJK\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-4cd2464fbca3e34570adf328a5fc7419945462ff8ef258e0d161f7bdf7fe43b3-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs></svg>"},"children":["---\nconfig:\n  theme: 'neutral'\n---\nsequenceDiagram\n    participant User\n    participant App as Your App\n    participant API as ","Reefpay","\n    App->>API: POST /v1/mfa/challenges (type: forgot_password)\n    API-->>User: OTP sent via email\n    User->>App: Enters OTP\n    App->>API: PATCH /v1/users/me/passwords (with OTP)\n    API-->>App: 200 OK — password updated\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-1-request-a-one-time-password","__idx":7},"children":["Step 1: Request a one-time password"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Send ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /v1/mfa/challenges"]}," with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["type: forgot_password"]}," and the user's email."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"shell","header":{"controls":{"copy":{}}},"source":"curl -X POST \\\n  https://api.dev.paradisegateway.net/v1/mfa/challenges \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"user_name\": \"john.doe@example.com\",\n    \"type\": \"forgot_password\"\n  }'\n","lang":"shell"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Response:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"status\": true,\n  \"correlation_id\": \"f6a7b8c9-d0e1-2345-f012-3456789abcde\"\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The user receives the OTP at their registered email address."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-2-set-new-password-with-otp","__idx":8},"children":["Step 2: Set new password with OTP"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Send ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PATCH /v1/users/me/passwords"]}," with the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["one_time_password"]}," field instead of ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["current_password"]},"."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"shell","header":{"controls":{"copy":{}}},"source":"curl -X PATCH \\\n  https://api.dev.paradisegateway.net/v1/users/me/passwords \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"user_name\": \"john.doe@example.com\",\n    \"one_time_password\": \"123456\",\n    \"current_password\": \"placeholder\",\n    \"new_password\": \"Hat-Chest-Clock5-Solid-Round\"\n  }'\n","lang":"shell"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Response:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"status\": true,\n  \"correlation_id\": \"a7b8c9d0-e1f2-3456-0123-456789abcdef\"\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"error-responses","__idx":9},"children":["Error responses"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"align":"left","data-label":"Status"},"children":["Status"]},{"$$mdtype":"Tag","name":"th","attributes":{"align":"left","data-label":"Meaning"},"children":["Meaning"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["401"]}]},{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["Current password or OTP is incorrect"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["404"]}]},{"$$mdtype":"Tag","name":"td","attributes":{"align":"left"},"children":["User not found"]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"next-steps","__idx":10},"children":["Next steps"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/docs/how-tos/clients-users/enable-mfa"},"children":["Enable multi-factor authentication"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/docs/how-tos/clients-users/update-user"},"children":["Update user profile"]}]}]}]},"headings":[{"value":"Reset a user password","id":"reset-a-user-password","depth":1},{"value":"Prerequisites","id":"prerequisites","depth":2},{"value":"Password requirements","id":"password-requirements","depth":2},{"value":"Option A: Change password (known current password)","id":"option-a-change-password-known-current-password","depth":2},{"value":"Step 1: Send the password update","id":"step-1-send-the-password-update","depth":3},{"value":"Response","id":"response","depth":3},{"value":"Option B: Forgot password (OTP flow)","id":"option-b-forgot-password-otp-flow","depth":2},{"value":"Step 1: Request a one-time password","id":"step-1-request-a-one-time-password","depth":3},{"value":"Step 2: Set new password with OTP","id":"step-2-set-new-password-with-otp","depth":3},{"value":"Error responses","id":"error-responses","depth":2},{"value":"Next steps","id":"next-steps","depth":2}],"frontmatter":{"title":"Reset a user password","shortTitle":"Reset password","intro":"Update a user password using the Passwords API. The flow requires the current password (or a one-time password from the forgot-password flow) plus the new password.","type":"how-to","seo":{"title":""}},"lastModified":"2026-06-05T02:46:44.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/docs/how-tos/clients-users/reset-password","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}