POST api/admin/searchsync/start?migrationId={migrationId}

Create and run as search sync request Processes this search sync API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
migrationId

The unique identifier of the migration resource.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

PagedCollectionDataContractOfJobInvocationDetailsDataContract
NameDescriptionTypeAdditional 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": "6dc8839b-c8d8-4517-9967-bcadc26ecef1",
      "Success": true
    },
    {
      "SupportsCancellation": true,
      "ReportsProgress": true,
      "InitialStatusText": "sample string 3",
      "JobReference": "6dc8839b-c8d8-4517-9967-bcadc26ecef1",
      "Success": true
    }
  ]
}