How to connect Tiendanube to API2Cart?
This guide will show you how to connect your Tiendanube store to API2Cart in just a few steps.
Step 1: Create an App
You need to register in Tiendanube Partner Center as a developer.
After registering, go to the Aplicaciones page and create a new application.

Next, fill in the basic information about the application

Here's an example

On this page, needs to select the necessary application scopes

Step 2: Installing the Application
To install the application in the store, you need to prepare the installation URL. The installation URL has the following format:
https://www.tiendanube.com/apps/{{app_id}}/authorize
where app_id can be obtained from the application's page

The shop owner needs to visit this link in a browser where they've logged into the store and confirm the app's installation
Once installed, the app allows you to connect Tiendanube to API2Cart by retrieving the necessary access credentials.
After you confirm the installation, the system redirects you to a page with a curl request that you need to execute using your preferred method
Executing this request will provide you with access_token and user_id, both of which are necessary to add the store to API2Cart
{ "access_token": "61181d08b7e328d256736hdcb671c3ce50b8af5", "token_type": "bearer", "scope": "read_orders,write_products", "user_id": "789" }
Step 3: Connect via API2Cart
After obtaining the access_token and user_id, you can connect Tiendanube to API2Cart
The tiendanube_client_secret parameter is optional and is required for webhook functionality.