curl --request POST \
--url https://app.tagadapay.com/api/public/v1/plugins/v2/deploy-from-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://example.com/plugin.zip",
"pluginId": "checkout-plugin",
"version": "1.0.0",
"name": "Checkout Plugin",
"description": "A checkout plugin",
"storeId": "store_abc123",
"mode": "direct-mode"
}
'