PUT api/Billing/Details
Details Backup/Restore
Request Information
URI Parameters
None.
Body Parameters
FilterDetailModelsName | Description | Type | Additional information |
---|---|---|---|
UserID |
User unique identifier |
globally unique identifier |
Required |
Date |
If empty or pass will set current month |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserID": "2ec611ea-953e-44f1-bdbf-0f6ff0e2e6eb", "Date": "2025-04-04T18:06:59.1208985Z" }
application/xml, text/xml
Sample:
<FilterDetailModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MBSAPImvc.Engine.Models"> <Date>2025-04-04T18:06:59.1208985Z</Date> <UserID>2ec611ea-953e-44f1-bdbf-0f6ff0e2e6eb</UserID> </FilterDetailModels>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DetailModelsName | Description | Type | Additional information |
---|---|---|---|
TotalBackupBytes |
Total Backup Bytes |
integer |
None. |
TotalRestoreBytes |
Total Backup Bytes |
integer |
None. |
UserID |
User unique identifier |
globally unique identifier |
None. |
UserDetailList |
User Detail List of Billing Information |
Collection of UserDetailModels |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalBackupBytes": 1, "TotalRestoreBytes": 2, "UserID": "bf5c856f-4871-4f18-b239-db6774c70df8", "UserDetailList": [ { "Computer": "sample string 1", "SizeBackup": 2, "SizeRestore": 3, "Prefix": "sample string 4", "AccountID": "71807384-a7cf-4c5f-abcb-50dbc338e7d7", "Destination": "sample string 6" }, { "Computer": "sample string 1", "SizeBackup": 2, "SizeRestore": 3, "Prefix": "sample string 4", "AccountID": "71807384-a7cf-4c5f-abcb-50dbc338e7d7", "Destination": "sample string 6" } ] }
application/xml, text/xml
Sample:
<DetailModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MBSAPImvc.Engine.Models"> <TotalBackupBytes>1</TotalBackupBytes> <TotalRestoreBytes>2</TotalRestoreBytes> <UserDetailList> <UserDetailModels> <AccountID>71807384-a7cf-4c5f-abcb-50dbc338e7d7</AccountID> <Computer>sample string 1</Computer> <Destination>sample string 6</Destination> <Prefix>sample string 4</Prefix> <SizeBackup>2</SizeBackup> <SizeRestore>3</SizeRestore> </UserDetailModels> <UserDetailModels> <AccountID>71807384-a7cf-4c5f-abcb-50dbc338e7d7</AccountID> <Computer>sample string 1</Computer> <Destination>sample string 6</Destination> <Prefix>sample string 4</Prefix> <SizeBackup>2</SizeBackup> <SizeRestore>3</SizeRestore> </UserDetailModels> </UserDetailList> <UserID>bf5c856f-4871-4f18-b239-db6774c70df8</UserID> </DetailModels>