GET Migration/Errors/{id}/{type}
Get Error list on a migration step
Request Information
Header Parameters
Name | Description | Additional information |
---|---|---|
X-OVH-Authorization | Source mail of the migration |
None. |
Parameters
Name | Description | Additional information |
---|---|---|
id | Id of the migration |
Define this parameter in the request URI. |
type | Step of the migration |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[ { "Type": "sample string 1", "ItemType": "sample string 2", "ItemName": "sample string 3", "Message": "sample string 4" }, { "Type": "sample string 1", "ItemType": "sample string 2", "ItemName": "sample string 3", "Message": "sample string 4" }, { "Type": "sample string 1", "ItemType": "sample string 2", "ItemName": "sample string 3", "Message": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfMigrationItemError xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OMM_API.Models.Migration"> <MigrationItemError> <ItemName>sample string 3</ItemName> <ItemType>sample string 2</ItemType> <Message>sample string 4</Message> <Type>sample string 1</Type> </MigrationItemError> <MigrationItemError> <ItemName>sample string 3</ItemName> <ItemType>sample string 2</ItemType> <Message>sample string 4</Message> <Type>sample string 1</Type> </MigrationItemError> <MigrationItemError> <ItemName>sample string 3</ItemName> <ItemType>sample string 2</ItemType> <Message>sample string 4</Message> <Type>sample string 1</Type> </MigrationItemError> </ArrayOfMigrationItemError>