Skip to content

Update customer profile

Request

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
Bodyapplication/jsonrequired
namestring

Customer account name

Example:"Acme Corp"
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"
  }'

Responses

Profile updated successfully

Bodyapplication/json
customerobject(Customer)
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" } }