https in curl code example
Example 1: curl https post
curl -d "" https:
curl -H "Content-Type: application/json" --data "@C:\Users\xxx\Desktop\body.json" https:
Example 2: curl example
curl --request POST \
--url https:
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{"personalizations": [{"to": [{"email": "[email protected]"}]}],"from": {"email": "[email protected]"},"subject": "Hello, World!","content": [{"type": "text/plain", "value": "Heya!"}]}'