PUT/partners/customers/{domainId}/subscription-memos/{subscriptionId}
顧客企業で利用中の商品に、商品識別コードとメモを割り当てる。 商品識別コードは最大 200 文字、メモは最大 700 文字まで設定できる。 商品識別コードまたはメモのいずれかは指定する必要があり、両方を null に設定することはできない。
Access Token を指定します。 指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
partner
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID required example : 10000001 |
| subscriptionId | string | 商品契約 ID required |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Property | Type | Description |
|---|---|---|
| customerCode | string | 商品識別コード maxLength : 200 nullable : true |
| memo | string | 商品のメモ maxLength : 700 nullable : true |
Example response
| Property | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID |
| subscriptionId | integer | 商品契約 ID |
| customerCode | string | 商品識別コード nullable : true |
| memo | string | 商品のメモ nullable : true |
Example 1
1{2 "domainId": 11111,3 "subscriptionId": 1021,4 "customerCode": "EXAMPLE-CODE001",5 "memo": "example"6}Bad Request
Not Found