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

Get form data

GET
http://localhost:3000/service_catalog/GetFormData/:form_id
GET
/service_catalog/GetFormData/:form_id
$curl http://localhost:3000/service_catalog/GetFormData/form_id \
> -u "<username>:<password>"
1{
2 "_id": "97fef636-a414-4d8d-bd52-ee3d314f6a21",
3 "id": "form_list",
4 "form_name": "testForm",
5 "formid": "e4c2d03a-3082-4a86-86fd-6fed5a9b962c",
6 "children": [
7 null
8 ],
9 "elements": [
10 null
11 ],
12 "created": "2019-03-22T14:55:13.074Z",
13 "createdBy": "5c8bff0370102c001502d1f7",
14 "name": "test",
15 "lastUpdated": "2019-03-22T14:55:13.074Z",
16 "lastUpdatedBy": "5c8bff0370102c001502d1f7",
17 "groups": [
18 {
19 "_id": "fe1bfeee-61b8-404d-aefc-dc57be92ff02",
20 "provenance": "Local AAA",
21 "name": "pronghorn_admin",
22 "description": "pronghorn_admin",
23 "memberOf": [
24 "group1"
25 ],
26 "assignedRoles": [
27 "engineer"
28 ],
29 "inactive": true,
30 "_meta": {
31 "created": "2019-03-15T19:37:39.112Z",
32 "updated": "2019-03-15T19:37:39.112Z"
33 }
34 }
35 ]
36}
Returns Form data using Form ID.
Was this page helpful?
Previous

Get form ID for service

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

form_idstringRequired
From's ID.

Response

Return the selected Form.
_idstring
idstring
form_namestring
formidstring
childrenlist of any
elementslist of any
createdstring
createdBystring
namestring
lastUpdatedstring
lastUpdatedBystring
groupslist of objects

Errors

500
Internal Server Error