POST api/TeamMember/AddBalance
Request Information
URI Parameters
None.
Body Parameters
AddBalanceDto| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | string |
Required |
|
| currentDate | date |
None. |
|
| amount | decimal number |
None. |
|
| service | string |
Required |
|
| teamMemberId | string |
Required |
|
| productId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerId": "sample string 1",
"currentDate": "2026-01-12T03:52:12.6450569+00:00",
"amount": 3.0,
"service": "sample string 4",
"teamMemberId": "sample string 5",
"productId": 6
}
application/xml, text/xml
Sample:
<AddBalanceDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Beauty_Lab_Dashboard.DTO"> <amount>3</amount> <currentDate>2026-01-12T03:52:12.6450569+00:00</currentDate> <customerId>sample string 1</customerId> <productId>6</productId> <service>sample string 4</service> <teamMemberId>sample string 5</teamMemberId> </AddBalanceDto>
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. |