Edit Multiple Service Catalogs
Request:
POST /api/service_catalogs
{
"action" : "edit",
"resources" : [
{
"href" : "http://localhost:3000/api/service_catalogs/3",
"description" : "Updated Description for Third Service Catalog"
},
{
"href" : "http://localhost:3000/api/service_catalogs/6",
"description" : "Updated Description for Sixth Service Catalog"
}
]
}
Response:
{
"results": [
{
"id" : "3",
"href" : "http://localhost:3000/api/service_catalogs/3",
"name": "Service Catalog B Added from REST API",
"description": "Updated Description for Third Service Catalog"
},
{
"id" : "6",
"href" : "http://localhost:3000/api/service_catalogs/6",
"name": "Service Catalog E Added from REST API",
"description": "Updated Description for Sixth Service Catalog"
}
]
}