So I have a new question… I don’t know how should I create a new subscriber using http request… In the Drip API Documentation I found this code
curl -X POST "https://api.getdrip.com/v2/YOUR_ACCOUNT_ID/subscribers" \
-H 'User-Agent: Your App Name (www.yourapp.com)' \
-H 'Content-Type: application/json' \
-u YOUR_API_KEY: \
-d @- << EOF
{
"subscribers": [{
"email": "[email protected]",
"time_zone": "America/Los_Angeles",
"custom_fields": {
"shirt_size": "Medium"
}
}]
}
EOF
I don’t know how to implement it in n8n 
Thank you!