Official documentation and examples for Pobo REST API V2 and Webhooks.
- Data Import (PHP SDK) - Import products, categories, parameters, and blogs
- Data Export (PHP SDK) - Export products, categories, and blogs with content
- Webhook Processing (PHP SDK) - Receive and verify webhook notifications
- PHP 8.3+
- Docker & Docker Compose
# Clone repository
git clone https://github.com/pobo-builder/pobo-api-doc.git
cd pobo-api-doc
# Copy environment file
cp .env.example .env
# Edit .env and add your API token
nano .env
# Start Docker
docker compose up -d
# Install dependencies
docker compose exec pobo-webhook-php composer installEdit .env file:
POBO_API_TOKEN=your_api_token_here
WEBHOOK_SECRET=your_webhook_secret_here# Run import example
make run-import
# Run export example
make run-exportThis project uses the official Pobo PHP SDK:
composer require pobo-builder/php-sdk| Endpoint | Import (POST) | Export (GET) |
|---|---|---|
/api/v2/rest/parameters |
✅ | ❌ |
/api/v2/rest/categories |
✅ | ✅ |
/api/v2/rest/products |
✅ | ✅ |
/api/v2/rest/blogs |
✅ | ✅ |