Catalog Services
Update Service
Updates a service.
patch/v1/catalog-services/{id}
Request body
Example request
{
"name": "user-svc",
"display_name": "User Service",
"labels": {
"env": "test"
},
"custom_fields": {
"owner": "John Appleseed",
"dashboard": {
"name": "On-Call Dashboard",
"link": "https://my-dashboard-svc.io/dashboards/1"
}
}
}Response
A response containing a single service object.
Example response
{
"id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"name": "user-svc",
"display_name": "User Service",
"custom_fields": {
"owner": "John Appleseed",
"dashboard": {
"name": "On-Call Dashboard",
"link": "https://my-dashboard-svc.io/dashboards/1"
}
},
"labels": {
"env": "test"
},
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}