Generate Access Token

Fynd Konnect supports two authorization modes for obtaining a valid access token:

  1. Company-Level Authorization – Grants comprehensive access across all warehouses or stores linked to the seller account. Ideal for businesses needing centralized control.
  2. Location-Level Authorization – Restricts access to a single store or warehouse. Suitable for multi-location operators wanting granular permissions.

Why Use It?

  • Secure, token-based authentication across all Konnect APIs.
  • Flexibility in controlling scope of access: company-wide vs. location-specific.

Try out Fynd Konnect's Generate Access Token Endpoint

Environment Details

EnvironmentHost URLExample
Non-Prod (Staging)https://{{aggregator_name}}.uat.fyndx1.de/https://api.konnect.uat.fyndx1.de/
Productionhttps://{{aggregator_name}}.extensions.fynd.com/https://api.konnect.fynd.extensions.fynd.com/

Common Request Header

Header: x-access-token

The x-access-token header is essential for authenticating requests to Fynd Konnect APIs. After obtaining a valid access token, include this header in your API requests to ensure secure and authorized interactions. This token verifies your identity and grants the necessary permissions to access and manipulate resources within the Fynd Konnect ecosystem.


Company-Level Authorization

An access token generated at the Company Level provides comprehensive access to all locations under a single seller account.

Key Benefits

  • Centralized Management
  • Bulk Operations
  • Unified Channels

How to Find Company-Level Credentials

  1. Navigate to Settings in the Fynd Konnect extension.
Accessing Settings on Fynd Konnect
Figure 1: Navigating to Settings

  1. Locate the Username and Token provided for generating your company-level access token.
Company-Level Username and Token
Figure 2: Retrieving Company-Level Credentials

Query

usernamestringrequired

Company or Store level integration username

passwordstringrequired

Company or Store level integration token/password

Success Response

access_tokenstringrequired

Token used for API authorization

statusstringrequired

Status of the API call

API Call Example

curl -i -X GET \
  'https://fyndkonnect.konnect.uat.fyndx1.de/aggregator/v1/token?password=string&username=string'
Response
application/json
{ "access_token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiI2NzJjODc1MzdiZWJjYzZkMWQ1MTdhZDMiLCJpYXQiOjE3MzI4NjE1OTksInJvbGUiOlsiUk9MRV9DT01QQU5ZIl0sImV4cCI6MTczMjk2MTU5OH0.6JZ-NgVn3V5duyQsrq30sODAfWY-bhMvzUxS6DYV-erfedufnb3413ewqdW341Vrwe24w1esqdsdqwe2", "status": "SUCCESS" }

Location-Level Authorization

An access token generated at the Location Level is limited to a single store or warehouse, perfect for location-specific control.

Key Benefits

  • Localized Management
  • Enhanced Security
  • Flexible

How to Find Location-Level Credentials

  1. Go to Selling Location in the Fynd Konnect extension.
Accessing Selling Location
Figure 3: Accessing a Location

  1. Click Show Token to view the Username and Token for this location.
Location-Level Username and Token
Figure 4: Retrieving Location-Level Credentials

Query

usernamestringrequired

Company or Store level integration username

passwordstringrequired

Company or Store level integration token/password

Success Response

access_tokenstringrequired

Token used for API authorization

statusstringrequired

Status of the API call

API Call Example

curl -i -X GET \
  'https://fyndkonnect.konnect.uat.fyndx1.de/aggregator/v1/token?password=string&username=string'
Response
application/json
{ "access_token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiI2NzJjODc1MzdiZWJjYzZkMWQ1MTdhZDMiLCJpYXQiOjE3MzI4NjE1OTksInJvbGUiOlsiUk9MRV9DT01QQU5ZIl0sImV4cCI6MTczMjk2MTU5OH0.6JZ-NgVn3V5duyQsrq30sODAfWY-bhMvzUxS6DYV-erfedufnb3413ewqdW341Vrwe24w1esqdsdqwe2", "status": "SUCCESS" }

Need Fynd Konnect's Staging Environment?
  • Reach out to the Fynd Konnect Team to obtain the staging environment and authentication credentials
  • Replace username and password with the actual staging company or store/location level credentials provided