1. Users
Core APIs
  • API Information
  • Error Code List
  • Clients
    • Get Info Client
      GET
  • Users
    • Login Flow
    • Login (UI by fypass)
      POST
    • Get User Login / Register Status (by fypass)
      GET
  • Devices
    • Save Device
      POST
    • Get Device Detail
      GET
  • Schemas
    • Error Response
    • deviceInfo
    • Fypass URL
  1. Users

Login (UI by fypass)

Developing
POST
/users/fypass/ui
Use endpoint to login user using fypass page. The login page will be provide by fypass, client don't need to create own login page

Request

Header Params

Body Params application/json

Example
{
    "reqToken": "9823jfoiwefofd",
    "finishAction": "direct",
    "directURL": "http://localhost:8000/pass/9823jfoiwefofd"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/users/fypass/ui' \
--header 'x-language: {{x-language}}' \
--header 'x-request-id: {{x-request-id}}' \
--header 'x-client-key: {{x-client-key}}' \
--header 'x-version: {{x-version}}' \
--header 'x-signature: {{x-signature}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reqToken": "9823jfoiwefofd",
    "finishAction": "direct",
    "directURL": "http://localhost:8000/pass/9823jfoiwefofd"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "URL": {
        "register": "https://fypass.com/c/register/898213928j9",
        "login": "https://fypass.com/c/login/898213928j9"
    }
}
Modified at 2025-04-03 13:46:05
Previous
Login Flow
Next
Get User Login / Register Status (by fypass)
Built with