GET/partners/customers/{domainId}/usage-status
Gets the customer’s usage status.
OAuth 2.0 authentication. For more information, see Authentication and Authorization.
partner
partner.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | Domain ID required example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
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}