Taiki
  • Taiki API Overview
  • QuickStart
  • Detailed References
    • Modes/Base Urls
    • Initialize JWT Token
    • Verify Token Endpoint
    • Invoke the Taiki App
    • Receive Data
Powered by GitBook
On this page
  • What is the Taiki App?
  • The Taiki modal can be invoked in two ways.
  • Invoking the Taiki app from Webapp
  • Invoking the Taiki app from IOS
  • Invoking the Taiki app from Android
  1. Detailed References

Invoke the Taiki App

PreviousVerify Token EndpointNextReceive Data

Last updated 8 months ago

What is the Taiki App?

The Taiki App offers a seamless tax form retrieval experience for both Android and iOS users. As an instant app on Android and an app clip on iOS, Taiki eliminates the need for traditional downloads. Users can access Taiki directly from a mobile or web application, allowing for immediate use without installation.

Once invoked, Taiki streamlines the process of gathering tax documents. Users simply log into their preferred platforms, and Taiki automatically collects all relevant tax forms from these sources. The app then efficiently transmits this compiled information to your specified web hook, ensuring secure and convenient delivery of tax data.

The Taiki modal can be invoked in two ways.

  1. Invoking from Invoking the Taiki app from Webapp

  2. Invoking from iOS and Android.

All methods of invocation requires a JWT token (string) and a year (string). JWTToken is the token generated here (Initialize JWT Token) and year is the tax form year you want your users to extract. (To file the tax report for 2023, year should be 2023)

Invoking the Taiki app from Webapp

To support the Taiki App with your webapp, you can use our JS CDN library to generate a QR code that when scanned by the user, will open the Taiki app.

First import it in the html entry point of your frontend.

<script src="https://Taiki JS CDN Link"></script>

Then invoke the QR code like so.

window.generateQRCode(JWTToken, year);

Invoking the Taiki app from IOS

Below is an example of an IOS application that triggers the Taiki App Clip from your app.

let baseURL = "Taiki App Clip URL"
let queryParameters = [
    "jwt": "JWT token generated by /api/token",
    "year": "year"
]

let appClipURL = URL(string: baseURL)?.appendingQueryParameters(queryParameters)

Link("Connect with Taiki", destination: appClipURL ?? URL(string: baseURL)!)
    .foregroundStyle(Color.white)

Invoking the Taiki app from Android

Coming soon!