Configure Connection
Step 2 - Configure Connection
In this step, you will provide Talk2sync with the necessary information to connect to your custom application.
Configuration Requirements
You must configure two main pieces of information:
1. Store URL
Enter the base URL of your store or application where Talk2sync will send requests.
Example:
https://www.example.com
Note: This should be your store's domain without the specific endpoint path. The endpoint paths will be configured separately.
2. API Endpoints
Specify the REST API endpoints that Talk2sync will use to communicate with your system. You need to provide at least two endpoints:
Products Endpoint (Required)
/api/products
This endpoint will be used to retrieve and manage your product catalog.
Orders Endpoint (Required)
/api/orders
This endpoint will be used to retrieve and manage your sales orders.
Optional Endpoints Depending on your requirements, you may configure additional endpoints for custom business logic.
Complete Example
If your store URL is https://www.example.com and your endpoints are /api/products and /api/orders, Talk2sync will make requests to:
GET/POST https://www.example.com/api/products
GET/POST https://www.example.com/api/orders
Configuration Form
In the Talk2sync interface, you will see a form with the following fields:
| Field | Value | Example |
|---|---|---|
| Store URL | Your base domain | https://www.example.com |
| Products Endpoint | Path to products API | /api/products |
| Orders Endpoint | Path to orders API | /api/orders |
Validation
Before proceeding, verify that:
- ✓ Your store URL is correct and accessible
- ✓ All endpoint paths are properly formatted
- ✓ Your endpoints respond to both GET and POST requests
- ✓ All responses are in JSON format
Important: Incorrect endpoint configuration will cause synchronization failures. Double-check your URLs before saving.
Next Steps
Once you have configured your endpoints, proceed to the next step: Generate Keys
Related Steps
- Previous: Add Connection
- Next: Generate Keys