Sign in

Create migration job (encrypted) (legacy)

documented

Create a content migration job (legacy path example).

POST {site_url}/_api/site/CreateMigrationJobEncryptedMigrationno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$site_url}}/_api/site/CreateMigrationJobEncrypted" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"gWebId": "{{$gWebId}}", "azureContainerSourceUri": "{{$azureContainerSourceUri}}", "azureContainerManifestUri": "{{$azureContainerManifestUri}}", "azureQueueReportUri": "{{$azureQueueReportUri}}", "options": {"AES256CBCKey": "{{$AES256CBCKey}}"} }'