GET api/User/Subscription
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
KiviCOM.API.Business.Users.UserSubscriptionInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| SubscriptionName | string |
None. |
|
| SubscriptionType | string |
None. |
|
| Status | string |
None. |
|
| AutoPaymentEnabled | boolean |
None. |
|
| BillingDayOfMonth | integer |
None. |
|
| UPNEnabled | boolean |
None. |
|
| PaymentMethod | string |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SubscriptionName": "sample string 1",
"SubscriptionType": "sample string 2",
"Status": "sample string 3",
"AutoPaymentEnabled": true,
"BillingDayOfMonth": 5,
"UPNEnabled": true,
"PaymentMethod": "sample string 6",
"ErrorMessage": "sample string 7"
}
text/xml
Sample:
<UserSubscriptionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KiviCOM.API.Business.Users"> <AutoPaymentEnabled>true</AutoPaymentEnabled> <BillingDayOfMonth>5</BillingDayOfMonth> <ErrorMessage>sample string 7</ErrorMessage> <PaymentMethod>sample string 6</PaymentMethod> <Status>sample string 3</Status> <SubscriptionName>sample string 1</SubscriptionName> <SubscriptionType>sample string 2</SubscriptionType> <UPNEnabled>true</UPNEnabled> </UserSubscriptionInfo>