Skip to main content

Modify a Communication Profile

Zuora
  • 日本語のコンテンツは機械翻訳されており、補助的な参照を目的としています。機械翻訳の精度は保証できません。英語版が正となります。また、現時点では検索機能は日本語での検索をサポートしていません。翻訳に関するフィードバックについては、docs@zuora.comに送信してください。

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:

1{
2    "name": "My Profile Modified",
3    "number": "region012",
4    "locale": "default",
5    "description": "test description",
6    "muted": false
7}

Response body:

1{
2  "id": "2c92c0fa6d05a238016d154fa937469d",
3  "name": "My Profile Modified",
4  "number": "region012",
5  "locale": "default",
6  "description": "test description",
7  "isDefault": false,
8  "muted": false
9}