Updated on 2025-03-25 GMT+08:00

Modifying the Change Status

Function

This API is used to modify the change status.

Calling Method

For details, see Calling APIs.

URI

PUT /v2/{cloudProjectId}/change-request/{changeRequestId}/status/update

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

cloudProjectId

Yes

String

Project ID.

changeRequestId

Yes

String

Change ID.

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

status

Yes

String

Change status. The value can be developing, to_be_released, releasing, released, or revoked.

Request Parameters

None

Response Parameters

Status code: 200

Table 3 Response body parameters

Parameter

Type

Description

id

String

Change ID.

component_id

String

Microservice ID.

status

String

Status.

title

String

Title.

repos

Array of repos objects

Information of the change code repository.

workitem_ids

Array of strings

Work item ID.

release_time

String

Release time.

creator_id

String

Creator ID.

creator_name

String

Creator name.

create_time

String

Creation time.

updater_id

String

Updater ID.

updater_name

String

Updater name.

update_time

String

Update time.

Table 4 repos

Parameter

Type

Description

repo_id

String

Repo code repository ID.

http_url

String

HTTP address of the code repository.

git_url

String

Git address of the code repository.

feature_branch

String

Feature branch.

main_branch

String

Default branch.

delete_branch_after_released

Boolean

Whether to delete the feature branch after release.

Example Requests

PUT https://{endpoint}/v2/2d09f712e9504b61b034cc8f40e475a8/change-request/da50ce1a874c4521975b0feda0dedd4c/status/update?status=to_be_released

Example Responses

Status code: 200

ok

{
  "id" : "da50ce1a874c4521975b0feda0dedd4c",
  "component_id" : "f7ced2341b204d2b82c607c6f0de5b4a",
  "status" : "to_be_released",
  "title" : "aaa",
  "repos" : [ ],
  "workitem_ids" : null,
  "release_time" : "1719221365",
  "creator_id" : "05d8ca972f114765a8984795a8aa4d41",
  "creator_name" : "p_test5",
  "create_time" : "1719217203",
  "updater_id" : "05d8ca972f114765a8984795a8aa4d41",
  "updater_name" : "p_test5",
  "update_time" : "1719221365"
}

Status Codes

Status Code

Description

200

ok

Error Codes

See Error Codes.