Generate Access Token
Fynd Konnect supports two authorization modes for obtaining a valid access token:
- Company-Level Authorization – Grants comprehensive access across all warehouses or stores linked to the seller account. Ideal for businesses needing centralized control.
- 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
Environment | Host URL | Example |
---|---|---|
Non-Prod (Staging) | https://{{aggregator_name}}.uat.fyndx1.de/ | https://api.konnect.uat.fyndx1.de/ |
Production | https://{{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
- Navigate to Settings in the Fynd Konnect extension.

- Locate the Username and Token provided for generating your company-level access token.

Query
Company or Store level integration username
Company or Store level integration token/password
Success Response
Token used for API authorization
Status of the API call
API Call Example
- Fynd Konnect [Sandbox] https://fyndkonnect.konnect.uat.fyndx1.de/aggregator/v1/token
- Ginesys <> Konnect [Sandbox] https://ginesys.konnect.uat.fyndx1.de/aggregator/v1/token
- Unicommerce <> Konnect [Sandbox] https://unicommerce.konnect.uat.fyndx1.de/aggregator/v1/token
curl -i -X GET \
'https://fyndkonnect.konnect.uat.fyndx1.de/aggregator/v1/token?password=string&username=string'
{ "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
- Go to Selling Location in the Fynd Konnect extension.

- Click Show Token to view the Username and Token for this location.

Query
Company or Store level integration username
Company or Store level integration token/password
Success Response
Token used for API authorization
Status of the API call
API Call Example
- Fynd Konnect [Sandbox] https://fyndkonnect.konnect.uat.fyndx1.de/aggregator/v1/token
- Ginesys <> Konnect [Sandbox] https://ginesys.konnect.uat.fyndx1.de/aggregator/v1/token
- Unicommerce <> Konnect [Sandbox] https://unicommerce.konnect.uat.fyndx1.de/aggregator/v1/token
curl -i -X GET \
'https://fyndkonnect.konnect.uat.fyndx1.de/aggregator/v1/token?password=string&username=string'
{ "access_token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiI2NzJjODc1MzdiZWJjYzZkMWQ1MTdhZDMiLCJpYXQiOjE3MzI4NjE1OTksInJvbGUiOlsiUk9MRV9DT01QQU5ZIl0sImV4cCI6MTczMjk2MTU5OH0.6JZ-NgVn3V5duyQsrq30sODAfWY-bhMvzUxS6DYV-erfedufnb3413ewqdW341Vrwe24w1esqdsdqwe2", "status": "SUCCESS" }
- Reach out to the Fynd Konnect Team to obtain the staging environment and authentication credentials
- Replace
username
andpassword
with the actual staging company or store/location level credentials provided