Modifying the Description of a Visualization Job
Function
This API is used to modify the description of a visualization job.
URI
PUT /v1/{project_id}/visualization-jobs/{job_id}
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| project_id | Yes | String | Project ID. For details about how to obtain the project ID, see Obtaining a Project ID. |
| job_id | Yes | String | ID of a visualization job |
Request Body
Response Body
| Parameter | Type | Description |
|---|---|---|
| is_success | Boolean | Whether the request is successful |
| error_code | String | Error code of a failed API call. For details, see Error Code. This parameter is not included when the API call succeeds. |
| error_msg | String | Error message of a failed API call. This parameter is not included when the API call succeeds. |
Samples
The following shows how to modify the description of the visualization job whose ID is 10 to This is a ModelArts job.
- Sample request
PUT https://endpoint/v1/{project_id}/visualization-jobs/10 { "job_desc": "This is a ModelArts job" }
- Successful sample response
{ "is_success": true } - Failed sample response
{ "is_success": false, "error_msg": "Illegal name: %%123", "error_code": "ModelArts.0104" }
Status Code
For details about the status code, see Table 1.
Last Article: Querying the Details About a Visualization Job
Next Article: Deleting a Visualization Job
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.