For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd service to catalog store
        • POSTCreate a new service order
        • POSTDelete a service
        • GETExport a catalog item
        • GETGet current user
        • GETGet form data
        • GETGet form ID for service
        • GETGet multiple forms
        • GETGet user groups
        • GETGet workflows
        • POSTImport a catalog items
        • POSTInvoke service order
        • GETList of service models
        • GETList services in store
        • POSTUpdate a service in catalog store
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceService Catalog

List of service models

GET
http://localhost:3000/service_catalog/ServiceModels
GET
/service_catalog/ServiceModels
$curl http://localhost:3000/service_catalog/ServiceModels \
> -u "<username>:<password>"
1[
2 {
3 "_id": "fe1bfeee-61b8-404d-aefc-dc57be92ff02",
4 "service_id": "/ncs:services/itential_test:choices",
5 "name": "test",
6 "description": "test",
7 "groups": [
8 "admin"
9 ],
10 "job_groups": [
11 "admin"
12 ],
13 "form_id": "912fd926-5391-48ff-b265-394d00640f4f",
14 "worflow": "testWF",
15 "instance_data": {},
16 "variable_name": "testVar",
17 "createdBy": "admin@pronghorn",
18 "created": "2019-04-18T12:44:40.112Z",
19 "lastUpdatedBy": "admin@pronghorn",
20 "lastUpdated": "2019-04-18T12:44:40.112Z"
21 }
22]

Lists of service models in Network Services Orchestrator (NSO).

Was this page helpful?
Previous

List services in store

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Response

Available service models.
_idstring
service_idstring
namestring
descriptionstring
groupslist of strings
job_groupslist of strings
form_idstring
worflowstring
instance_dataobject
variable_namestring
createdBystring
createdstring
lastUpdatedBystring
lastUpdatedstring

Errors

500
Internal Server Error