Skip to main content
POST
/
api
/
query
/
migration
/
federated
/
v1
/
to
/
v2
/
{datasource-id}
/
reverse
cURL
curl 'https://{domo-domain}/api/query/migration/federated/v1/to/v2/{datasource-id}/reverse' \
  -X POST \
  -H 'content-type: application/json' \
  -H 'accept: application/json,*/*;q=0.8' \
  -H 'accept-language: en-US,en;q=0.9' \
  -H 'cache-control: max-age=0' \
  -H 'X-DOMO-Developer-Token: {developer-token}'
{
  "toe": "DM4X9GT6H5-5ERQX-MPDO6",
  "datasourceId": "495e28ec-6c07-41fc-99ed-b2dce9a5f569",
  "direction": "V2_TO_V1",
  "startTime": "2024-04-15T19:48:00.073+00:00",
  "state": "COMPLETE",
  "errorMessage": null,
  "endTime": "2024-04-15T19:48:02.410+00:00"
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo access token that you can generate in the admin panel from within your Domo instance.

Path Parameters

datasource-id
string
required

The unique ID of one of the Federated V1 datasources returned from the List Federated V1 Migration CandidateDatasources by Account API.

Response

200 - application/json

Successful response

toe
string

Unique identifier of the migration reversal request.

datasourceId
string

Unique identifier of the datasource migration reversal was requested for.

direction
enum<string>

Direction of the migration reversal. Will be 'V2_TO_V1'.

Available options:
V2_TO_V1
startTime
string<date-time>

Starting date and time of the migration reversal.

state
enum<string>

Final state of the migration reversal, one of ["COMPLETE", "INCOMPLETE", "ABORTED"]

  • COMPLETE: Migration reversal has completed successfully.
  • INCOMPLETE: Migration reversal failed after some changes to the datasource were made. Domo content powered by the datasource may remain unavailable and/or non-functional until the migration reversal is re-attempted and completes successfully. More information can be found in the 'errorMessage' property.
  • ABORTED: Migration reversal was aborted prior to any changes being made to the datasource. More information can be found in the 'errorMessage' property.
Available options:
COMPLETE,
INCOMPLETE,
ABORTED
errorMessage
string | null

Message populated with additional details when a migration reversal fails to complete normally or is aborted prior to starting.

endTime
string<date-time>

Timestamp indicating the end time of the migration reversal.