PATCH/partners/customers/{domainId}/usage-status/renewal
Updates a scheduled task to change the maximum number of users (maxMemberCount).
OAuth 2.0 authentication. For more information, see Authentication and Authorization.
partner
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | Domain ID required example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Property | Type | Description |
|---|---|---|
| applyDate | string | Scheduled date
required format : date |
Change the scheduled date to "2025-02-20"
1{2 "applyDate": "2025-02-20"3}OK
| Property | Type | Description |
|---|---|---|
| domainId | integer | Domain ID |
| status | string | Customer status
Allowed values : ACTIVE, SUSPENDED_ADMIN, SUSPENDED_WITHDRAWAL |
| memberCount | integer | Number of users |
| maxMemberCount | integer | Maximum number of users nullable : true |
| withdrawalDate | string | Cancellation date
format : date nullable : true |
| renewal | object (renewal) | Scheduled subscription information |
| Property | Type | Description |
|---|---|---|
| maxMemberCount | integer | Maximum number of users nullable : true |
| applyDate | string | Scheduled date required format : date |
Example 1
1{2 "domainId": 0,3 "status": "ACTIVE",4 "memberCount": 0,5 "maxMemberCount": 0,6 "withdrawalDate": "2019-08-24"7}