POST api/admin/migrations/queue/events
Queue Event Migration. Processes this rezi migration API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The queue migration step data contract supplied with the request.
QueueMigrationStepDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| MigrationId |
The unique identifier of the related migration resource. |
integer |
None. |
| ChunkSize |
The chunk size value. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"MigrationId": 1,
"ChunkSize": 2
}
Response Information
Resource Description
The response returned after the operation completes.
PagedCollectionDataContractOfJobInvocationDetailsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount |
The total count value. |
integer |
None. |
| CurrentCount |
The current count value. |
integer |
None. |
| PageSize |
The page size value. |
integer |
None. |
| PageNumber |
The page number value. |
integer |
None. |
| Collection |
The collection of collection. |
Collection of JobInvocationDetailsDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"CurrentCount": 2,
"PageSize": 1,
"PageNumber": 1,
"Collection": [
{
"SupportsCancellation": true,
"ReportsProgress": true,
"InitialStatusText": "sample string 3",
"JobReference": "9f4669f3-41e7-46e3-ac23-35ad0c6452ca",
"Success": true
},
{
"SupportsCancellation": true,
"ReportsProgress": true,
"InitialStatusText": "sample string 3",
"JobReference": "9f4669f3-41e7-46e3-ac23-35ad0c6452ca",
"Success": true
}
]
}