POST api/billinggroup/CreateBillingGroup
Request Information
URI Parameters
None.
Body Parameters
BillingGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| BillingGroupID | integer |
None. |
|
| BillingGroupName | string |
Required String length: inclusive between 0 and 50 |
|
| BillingGroupCode | string |
Required String length: inclusive between 0 and 5 |
|
| UserName | string |
Required String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"BillingGroupID": 1,
"BillingGroupName": "sample string 2",
"BillingGroupCode": "sample string 3",
"UserName": "sample string 4"
}
application/xml, text/xml
Sample:
<BillingGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDMWebAPI.Models"> <BillingGroupCode>sample string 3</BillingGroupCode> <BillingGroupID>1</BillingGroupID> <BillingGroupName>sample string 2</BillingGroupName> <UserName>sample string 4</UserName> </BillingGroup>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |