v5

latestOpenAPI 3.0.1Apache 2.02026-08-046169702.3 MB
App migration

Bulk update entity properties

Updates the values of multiple entity properties for an object, up to 50 updates per request. This operation is for use by Connect apps during app migration.

put/rest/atlassian-connect/1/migration/properties/{entityType}

Path parameters

entityType'IssueProperty' | 'CommentProperty' | 'DashboardItemProperty' | 'IssueTypeProperty' | 'ProjectProperty' | 'UserProperty' | 'WorklogProperty' | 'BoardProperty' | 'SprintProperty' required

The type indicating the object that contains the entity properties.

Headers

Atlassian-Transfer-Idstring uuid required

The app migration transfer ID.

Request body

entityIdnumber required

The entity property ID.

keystring required

The entity property key.

valuestring required

The new value of the entity property.

Example request

[
  {
    "entityId": 123,
    "key": "mykey",
    "value": "newValue"
  }
]

Response

Returned if the request is successful.