PUT api/Billing/Details
Retrieves detailed billing information for backup and restore operations
Request Information
URI Parameters
None.
Body Parameters
FilterDetailModels| Name | 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": "047c0d13-3d35-4373-ae71-fbb6da3ffabc",
"Date": "2026-03-05T01:07:44.8091746Z"
}
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>2026-03-05T01:07:44.8091746Z</Date> <UserID>047c0d13-3d35-4373-ae71-fbb6da3ffabc</UserID> </FilterDetailModels>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DetailModels| Name | 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": "f0e4de8f-87ad-47e8-bf3e-a1941a9a1443",
"UserDetailList": [
{
"Computer": "sample string 1",
"SizeBackup": 2,
"SizeRestore": 3,
"Prefix": "sample string 4",
"AccountID": "ed0ae3a4-1bfe-4f93-b04f-36ae8651f72e",
"Destination": "sample string 6"
},
{
"Computer": "sample string 1",
"SizeBackup": 2,
"SizeRestore": 3,
"Prefix": "sample string 4",
"AccountID": "ed0ae3a4-1bfe-4f93-b04f-36ae8651f72e",
"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>ed0ae3a4-1bfe-4f93-b04f-36ae8651f72e</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>ed0ae3a4-1bfe-4f93-b04f-36ae8651f72e</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>f0e4de8f-87ad-47e8-bf3e-a1941a9a1443</UserID>
</DetailModels>