GET api/BeginMigration?AuthenticationToken={AuthenticationToken}&DomainName={DomainName}&WebsiteName={WebsiteName}&MigrationTypeId={MigrationTypeId}&AgencyID={AgencyID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AuthenticationToken | string |
Required |
|
| DomainName | string |
Required |
|
| WebsiteName | string |
Required |
|
| MigrationTypeId | integer |
Required |
|
| AgencyID | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
WebSession| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| AgencyID | integer |
None. |
|
| UserID | integer |
None. |
|
| WebsiteID | integer |
None. |
|
| TenantID | integer |
None. |
|
| Message | string |
None. |
|
| MigrationID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"AgencyID": 2,
"UserID": 3,
"WebsiteID": 4,
"TenantID": 5,
"Message": "sample string 6",
"MigrationID": 7
}
application/xml, text/xml
Sample:
<MigrationController.WebSession xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueBerryCMS.API.Migration.NET.Controllers"> <AgencyID>2</AgencyID> <IsValid>true</IsValid> <Message>sample string 6</Message> <MigrationID>7</MigrationID> <TenantID>5</TenantID> <UserID>3</UserID> <WebsiteID>4</WebsiteID> </MigrationController.WebSession>