POST api/ContentsRecovery
Request Information
URI Parameters
None.
Body Parameters
RequestInfoRecoveryFlat| Name | Description | Type | Additional information |
|---|---|---|---|
| RecoveryIDs | Collection of integer |
None. |
|
| _recoveryIDs | Collection of integer |
None. |
|
| PlatformId | integer |
None. |
|
| DeviceID | string |
None. |
|
| LastUpdateDate | date |
None. |
|
| SessionId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"_recoveryIDs": [
1,
2
],
"PlatformId": 1,
"DeviceID": "sample string 2",
"LastUpdateDate": "2025-12-28T18:29:35.180738+01:00",
"SessionId": "sample string 4",
"RecoveryIDs": [
1,
2
]
}
application/xml, text/xml
Sample:
<RequestInfoRecoveryFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat">
<DeviceID>sample string 2</DeviceID>
<LastUpdateDate>2025-12-28T18:29:35.180738+01:00</LastUpdateDate>
<PlatformId>1</PlatformId>
<SessionId>sample string 4</SessionId>
<RecoveryIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</RecoveryIDs>
<_recoveryIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</_recoveryIDs>
</RequestInfoRecoveryFlat>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseInfoFlat| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorNumber | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| ActionResult | boolean |
None. |
|
| ResultMessage | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorNumber": 1,
"ErrorMessage": "sample string 2",
"ActionResult": true,
"ResultMessage": "sample string 4",
"Result": {}
}
application/xml, text/xml
Sample:
<ResponseInfoFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat"> <ActionResult>true</ActionResult> <ErrorMessage>sample string 2</ErrorMessage> <ErrorNumber>1</ErrorNumber> <Result /> <ResultMessage>sample string 4</ResultMessage> </ResponseInfoFlat>