get_status_for_authenticated_user | SELECT | migration_id | Fetches a single user migration. The response includes the state of the migration, which can be one of the following values:
pending - the migration hasn't started yet. exporting - the migration is in progress. exported - the migration finished successfully. failed - the migration failed.
Once the migration has been exported you can download the migration archive. |
get_status_for_org | SELECT | migration_id, org | Fetches the status of a migration.
The state of a migration can be one of the following values:
pending , which means the migration hasn't started yet. exporting , which means the migration is in progress. exported , which means the migration finished successfully. failed , which means the migration failed. |
list_for_authenticated_user | SELECT | | Lists all migrations a user has started. |
list_for_org | SELECT | org | Lists the most recent migrations. |
start_for_authenticated_user | EXEC | data__repositories | Initiates the generation of a user migration archive. |
start_for_org | EXEC | org, data__repositories | Initiates the generation of a migration archive. |