Update customer profile settings.
Note: Webhook endpoints are now managed via the /api/v1/customer/webhooks endpoints. See the Webhooks section for creating and managing multiple webhook endpoints.
Security
ApiKeyAuth
- US Data Centerhttps://api.mailerlogic.net/api/v1/customer/profile
- EU Data Center (coming soon)https://eu-api.mailerlogic.net/api/v1/customer/profile
curl -i -X PUT \
https://api.mailerlogic.net/api/v1/customer/profile \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"name": "Acme Corporation"
}'Response
{ "customer": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "email": "user@example.com", "status": "active", "tracking_enabled": true, "click_tracking_enabled": true, "open_tracking_enabled": true, "created_at": "2019-08-24T14:15:22Z" } }