Wayflyer Tracked Login API

The Tracked Login API from Wayflyer — 1 operation(s) for tracked login.

OpenAPI Specification

wayflyer-tracked-login-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Embedded Finance Auth Tracked Login API
  version: '1'
  description: ''
servers:
- url: https://api.wayflyer.com/financing/
  description: Production
tags:
- name: Tracked Login
paths:
  /company/tracked-login/:
    post:
      operationId: wf_embedded_finance_service_apps_web_core_views_tracked_login_create_tracked_login_token_view
      summary: Create a tracked login token
      parameters:
      - $ref: '#/components/parameters/ApiVersion'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrackedLoginTokenResponse'
      description: 'Generate a URL to redirect the user to log in to their Wayflyer account.


        Use this endpoint when you want to hand over a user with an existing Wayflyer account to Wayflyer.'
      tags:
      - Tracked Login
      security:
      - CompanyToken: []
components:
  parameters:
    ApiVersion:
      in: header
      name: API-Version
      schema:
        title: API-Version
        type: string
        enum:
        - '1'
      required: false
  schemas:
    TrackedLoginTokenResponse:
      properties:
        url:
          title: Url
          type: string
      required:
      - url
      title: TrackedLoginTokenResponse
      type: object
  securitySchemes:
    CompanyToken:
      type: http
      scheme: bearer
    PartnerToken:
      type: http
      scheme: bearer