Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleExpand

Query parameters:

  • issueKey: string (required)

Responses

  • Status
    colourGreen
    titlestatus 200
    application/json Returns list of all history events for the checklist associated with the provided issue key in JSON format

Status
colourBlue
titleNew
Run migration POST /rest/railsware/1.0/migration

Start the storage migration or migration from other apps (My ToDo, Elements Checklist)

Expand
titleExpand

Query parameters:

  • migrationOption: string

    • possible values: OVERRIDE, APPEND, ADD-IF-EMPTY

  • migrationType: string

    • possible values: STORAGE, ELEMENTS, MY_TO_DO

  • projectIds: array of project IDs,

  • START_DATE: date

  • END_DATE: date

  • dryRun: boolean

    • value: true - no changes will be made. Use it to see and confirm the list of issue IDs where the checklist data needs to be restored

    • value: false - apply changes to the list of issues from dryRun mode

Example

Code Block
languagejson
{
    "migrationOption": "OVERRIDE",
    "migrationType": "ELEMENTS",
    "projectIds": [11001, 10900],
    "parameters":{"START_DATE": "2024-05-01T14:26:00", "END_DATE":"2024-05-03T14:26:00"},
     "dryRun": true}
}

Responses

  • Status
    colourGreen
    titlestatus 200
    application/json Returns list of existing templates in JSON format

  • Status
    colourRed
    titlestatus 400
    status 400 - returned if values for query parameters are not correct

...