PATCH/partners/customers/{domainId}/usage-status
Sets the maximum number of users (maxMemberCount) or a scheduled cancellation date (withdrawalDate).
Set the maximum number of users (maxMemberCount)
Set a scheduled cancellation date (withdrawalDate)
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 |
|---|---|---|
| maxMemberCount | integer | Maximum number of users to apply
nullable : true |
| withdrawalDate | string | Scheduled cancellation date.
format : date nullable : true |
Set the maximum number of users to 10, and the scheduled cancellation date to 2025-12-31
1{2 "maxMemberCount": 10,3 "withdrawalDate": "2025-12-31"4}Delete the scheduled cancellation and set the maximum number of users to 10
1{2 "maxMemberCount": 10,3 "withdrawalDate": null4}Delete the maximum number of users and the scheduled cancellation
1{2 "maxMemberCount": null,3 "withdrawalDate": null4}Set the scheduled cancellation date to 2025-12-31 and delete the setting of the maximum number of users
1{2 "maxMemberCount": null,3 "withdrawalDate": "2025-12-31"4}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}