Skip to main content

Modify a Communication Profile

Zuora

Modify a Communication Profile

To modify a communication profile, see the following request and a sample of 200 response. You can get the communication profile ID or number in the path parameter through Get all communication profiles.

HTTP request:

PUT https://rest.zuora.com/settings/communication-profiles/{profile-key}

The profile-key can be the ID or profile number of a communication profile.

Request body:

{
    "name": "My Profile Modified",
    "number": "region012",
    "locale": "default",
    "description": "test description",
    "muted": false
}

Response body:

{
  "id": "2c92c0fa6d05a238016d154fa937469d",
  "name": "My Profile Modified",
  "number": "region012",
  "locale": "default",
  "description": "test description",
  "isDefault": false,
  "muted": false
}