Services - Service Offerings API
List service offerings of a service
List all service offerings of the service with a specific ID.
GET /services/:id/service_offerings
Response
Status: 200 OK
[
{
"name": "Bronze Conference Room",
"created_at": "2016-03-14T03:10:41-06:00",
"sourceID": null,
"updated_at": "2016-03-14T03:10:41-06:00",
"service": {
"name": "Conference Room",
"id": 10,
"provider": {
"name": "Widget Data Center, Internal IT",
"id": 32
}
},
"id": 20,
"status": "available"
},
{
"name": "Bronze Local Printing",
"created_at": "2016-03-14T03:10:41-06:00",
"sourceID": null,
"updated_at": "2016-03-14T03:10:41-06:00",
"service": {
"name": "Local Printing",
"id": 17,
"provider": {
"name": "Widget Data Center, Internal IT",
"id": 32
}
},
"id": 21,
"status": "available"
},
"..."
]
The response contains these fields by default.
Predefined Filters
The following predefined filters are available:
/services/:id/service_offerings/catalog
: List all catalog service offerings of a service with a specific ID/services/:id/service_offerings/portfolio
: List all portfolio service offerings of a service with a specific ID