Skip to main content
This quickstart walks through onboarding to Quicko Connect — the OAuth-based workflow that lets you connect your app to your users’ Quicko accounts once they grant consent.
Not what you’re looking for? If your app does not need consent-based access and only needs to redirect users into Quicko, use a redirection workflow instead:
  • Mobile — embed Quicko Tools in a WebView. See Mobile Integration.
  • Web — redirect users to the Income Tax Web App with your affiliate_id. See Refer.

Before you start

You will need:
  • A Quicko account owned by your organisation (not a personal account).
  • Access to your application’s hosted Redirect URL, Policy URL, and Logo URL.
  • An HTTPS endpoint on your servers if you plan to receive webhook events.

1. Create a Quicko account

Sign up at quicko.com using a shared organisational email rather than an individual employee’s address. Examples:
  • team-tax@yourcompany.com
  • tax-filing@yourcompany.com
  • quicko-integration@yourcompany.com
Using a shared mailbox keeps ownership with the team — credentials, app status, and webhook alerts continue to reach you when team members move on.

2. Register your app

Sign in to myaccount.quicko.com and navigate to Settings → Integrations & Access → Connect, then click Create App. Fill in the following details:
Newly created apps are in Draft status and cannot be used to make live OAuth requests. After submitting the form, email developer@quicko.com with the subject Quicko Connect Integration and include your registered email and use case in the body so the team can review and approve your app.

Open in Gmail

Compose in Gmail web.

Open in Outlook

Compose in Outlook web.

Default mail app

Open in your system’s default mail client.

3. Generate API credentials

Once your app is approved, navigate to Settings → Integrations & Access → API Access to generate your credentials. You will receive an API Key and an API Secret:
  • Credentials are prefixed with key_live_… / secret_live_….
  • These are used to call the Authenticate API and obtain your API User Access Token.
The API Secret is shown — and downloadable — only once, immediately after it is generated. Save it to your secret manager right away. If you lose it, you must rotate the credential and update every system that uses it.

Authentication

Learn how to exchange these credentials for an API User Access Token.

4. Configure webhooks

Webhooks let Quicko push event notifications to your servers as users progress through their tax journey. Go to Settings → Integrations & Access → Webhooks and click Create Webhook.

Available events

Verifying webhook signatures

Providing a Secret when creating the webhook is optional but strongly recommended. When a secret is set, Quicko signs every delivery so your server can confirm the request is authentic and was not tampered with in transit. How the signature is produced
  1. Quicko serialises the event payload as a JSON string (the same bytes sent in the request body).
  2. It computes an HMAC-SHA256 of that string using your webhook secret as the key.
  3. The hex-encoded digest is sent in the x-webhook-signature request header.
If no secret is configured on the webhook, the x-webhook-signature header is omitted and no signature is computed. How to verify on your server Recompute the HMAC over the raw request body using the same secret and compare it against the header value using a constant-time comparison.
Verify against the raw request body — not a re-serialised version of the parsed JSON. Whitespace and key ordering changes will break the signature check.
Treat the webhook secret with the same care as your API Secret. Rotate it immediately if you suspect it has been exposed, and update every receiver before discarding the old value.

Next steps

Authentication

Exchange your API credentials for an access token to call Quicko APIs.

OAuth

Walk through the consent flow and obtain a Resource Owner access token.

Open APIs

Explore the data and actions available through the consent-based APIs.

Events

See the full directory of events you can subscribe to via webhooks.