GET/partners/customers/{domainId}/subscription-memos
顧客企業で利用中の商品に割り当てられた商品識別コードとメモのリストを取得する。
商品識別コードまたはメモが割り当てられた商品だけがリストに含まれる。
Access Token を指定します。 指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
partner
partner.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID required example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
Example response
| Property | Type | Description |
|---|---|---|
| subscriptionMemos | array (SubscriptionMemos) |
| Property | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID |
| subscriptionId | integer | 商品契約 ID |
| customerCode | string | 商品識別コード nullable : true |
| memo | string | 商品のメモ nullable : true |
Example 1
1{2 "subscriptionMemos": [3 {4 "domainId": 11111,5 "subscriptionId": 1021,6 "customerCode": "EXAMPLE-CODE001",7 "memo": "example"8 }9 ]10}