n8n node for Dolivroo - Unified shipping API for Algeria
npm install n8n-nodes-dolivroon8n-nodes-dolivroo
bash
cd ~/.n8n/custom
npm install n8n-nodes-dolivroo
`
Configuration
1. In n8n, go to Credentials → Add Credential
2. Select Dolivroo API
3. Enter your API key from dolivroo.com/dashboard/developer
Available Operations
$3
- Create - Create a new shipping parcel
- Get - Get parcel details by tracking ID
- Cancel - Cancel an existing parcel
- Get Label - Download shipping label (PDF)
$3
- Get Rates - Get shipping rates from origin to destination
$3
- List - Get all available delivery companies
Example Workflow
`json
{
"nodes": [
{
"name": "Create Parcel",
"type": "n8n-nodes-dolivroo.dolivroo",
"parameters": {
"operation": "createParcel",
"provider": "yalidine",
"customerName": "Ahmed Ben Ali",
"customerPhone": "0555123456",
"destinationWilaya": "Alger",
"destinationCommune": "Bab El Oued",
"productDescription": "Electronics",
"amount": 5000
}
}
]
}
``