[Index]
CUCM connection relation
Model ref.: relation/WebDriverCucmServer
The full URL would include the host-proxy name: https://[host-proxy].
Variables are enclosed in square brackets.
{ "$schema": "http://json-schema.org/draft-03/schema", "type": "object", "properties": { "name": { "title": "Name", "required": true, "type": "string", "description": "Name for this instance of generic driver connection details." }, "description": { "title": "Description", "required": true, "type": "string", "description": "Description for this instance of generic driver connection details." }, "version": { "description": "Version of models to use.", "title": "Version", "pattern": "^[0-9]+?(\\.[0-9]+?)+?$", "required": true, "type": "string" }, "auth_method": { "description": "Type of authentication to use when interfacing to the external service.", "title": "Authentication Method", "required": true, "choices": [ { "value": "BASIC", "title": "HTTP Basic Authentication" }, { "value": "OAUTH", "title": "OAuth(OApen Authorization)" }, { "value": "SESSION", "title": "Session Based Authentication" } ], "type": "string" }, "username": { "title": "Username", "required": false, "type": "string", "description": "Username to use with specified authentication method." }, "password": { "is_password": true, "description": "Password to use with specified authentication method.", "title": "Password", "required": false, "store_encrypted": true, "type": "string" }, "token": { "is_password": true, "description": "Token to use with specified authentication method.", "title": "Token", "required": false, "store_encrypted": true, "type": "string" }, "test_connection_uri": { "title": "Test Connection URI", "type": "string", "description": "URI to use when testing connection to external service, e.g. https://service.domain/api/health, {{ driver_parameters.host_base }}/status" }, "driver_parameters": { "items": { "type": "object", "properties": { "name": { "title": "Name", "required": true, "type": "string", "description": "Name of additional driver parameter." }, "value": { "title": "Value", "required": true, "type": "string", "description": "Value of additional driver parameter." } } }, "title": "Driver Parameters", "type": "array", "description": "Additional parameters for the driver" }, "secure_driver_parameters": { "items": { "type": "object", "properties": { "name": { "is_password": false, "description": "Name of additional secure driver parameter.", "title": "Name", "required": true, "store_encrypted": false, "type": "string" }, "value": { "is_password": true, "description": "Value of additional secure driver parameter.", "title": "Value", "required": true, "store_encrypted": true, "type": "string" } } }, "title": "Secure Driver Parameters", "type": "array", "description": "Additional secure parameters for the driver" }, "default_request_headers": { "items": { "type": "object", "properties": { "name": { "title": "Name", "required": true, "type": "string", "description": "Name of HTTP request header, e.g. Accept." }, "value": { "title": "Value", "required": true, "type": "string", "description": "Value of HTTP request header, e.g. text/plain." } } }, "title": "Default Request Headers", "type": "array", "description": "Default HTTP request headers to send with all device model API operation requests. Defaults specified here will be overriden by request headers specified on individual device model API operation definitions." }, "default_response_handlers": { "items": { "type": "object", "properties": { "condition": { "title": "Condition", "required": true, "type": "string", "description": "Jinja template which if evaluation results in a value of True will cause the specified handler type to be executed, e.g. {{ status_code == 429 }}." }, "type": { "description": "Response handler type to execute if specified condition evaluates to True, e.g. Backoff & Retry.", "title": "Type", "required": true, "choices": [ { "value": "backoff_retry", "title": "Backoff & Retry" }, { "value": "failure_duplicate", "title": "Failure - Duplicate" }, { "value": "invalid_session", "title": "Invalid Session" } ], "type": "string" } } }, "title": "Default Response Handlers", "type": "array", "description": "Default handlers to execute on all API operation responses. Only those response handlers' which condition evaluates to True are executed." }, "session_based_auth_request": { "type": "object", "title": "Session Based Auth Request", "description": "Describes the API request required to obtain a valid auth token.", "properties": { "login_uri": { "title": "Login URI", "type": "string", "description": "URI for the API Login request." }, "login_http_method": { "description": "HTTP method for API login request.", "title": "Login HTTP Method", "default": "POST", "choices": [ { "value": "GET", "title": "GET" }, { "value": "POST", "title": "POST" } ], "type": "string" }, "login_request_headers": { "items": { "type": "object", "properties": { "session_header_name": { "title": "Header Name", "type": "string", "description": "Name of session request header, e.g. Cookie." }, "session_header_value": { "title": "Header Value", "type": "string", "description": "Value of session request header, e.g. session=12345. This is a jinja template with custom functions and driver parameter context available." } } }, "title": "Login Request Headers", "type": "array", "description": "Request headers for the initial login request." }, "request_template": { "title": "Request Template for POST requests", "type": "string", "description": "A request template that will be used for POST requests." }, "session_expire_minutes": { "title": "Session Expire Time (min)", "type": "integer", "description": "The amount of time a session is valid specifiec in minutes." }, "session_headers": { "items": { "type": "object", "properties": { "session_header_name": { "title": "Header Name", "type": "string", "description": "Name of session request header, e.g. Cookie." }, "session_header_value": { "title": "Header Value", "type": "string", "description": "Value of session request header, e.g. session=12345." } } }, "title": "Headers", "type": "array", "description": "Session headers to include for all requests." } } }, "common_actions": { "items": { "type": "object", "properties": { "action": { "required": true, "type": "string", "description": "Name of the device model operation for e.g. add", "title": "Action" }, "uri": { "type": "string", "description": "URI for the API request", "title": "URI" }, "target": { "description": "Target of this operation", "title": "Target", "default": "HTTP", "required": false, "choices": [ { "value": "HTTP", "title": "HTTP" }, { "value": "Browser", "title": "Browser" }, { "value": "SOAP", "title": "SOAP" }, { "value": "Socket", "title": "Socket" }, { "value": "winrm", "title": "winrm" } ], "type": "string" }, "request_format": { "description": "Request format", "title": "Request Format", "default": "JSON", "required": false, "choices": [ { "value": "JSON", "title": "JSON" }, { "value": "XML", "title": "XML" }, { "value": "string", "title": "string" } ], "type": "string" }, "response_format": { "description": "Response format", "title": "Response Format", "default": "JSON", "required": false, "choices": [ { "value": "JSON", "title": "JSON" }, { "value": "XML", "title": "XML" } ], "type": "string" }, "http_method": { "description": "HTTP method for API request", "title": "HTTP Method", "default": "get", "choices": [ { "value": "GET", "title": "GET" }, { "value": "POST", "title": "POST" }, { "value": "PATCH", "title": "PATCH" }, { "value": "PUT", "title": "PUT" }, { "value": "DELETE", "title": "DELETE" } ], "type": "string" }, "response_code_template": { "type": "string", "description": "Jinja template for mapping API endpoint specific error/status response", "title": "Response Code Template" }, "request_headers": { "items": { "type": "object", "properties": { "name": { "required": true, "type": "string", "description": "Name of HTTP request header, e.g. Accept.", "title": "Name" }, "value": { "required": true, "type": "string", "description": "Value of HTTP request header, e.g. text/plain.", "title": "Value" } } }, "type": "array", "description": "HTTP request headers to send with API operation request. Takes precedence over default request headers specified on related Connection Parameters Type instance.", "title": "Request Headers" }, "response_handlers": { "items": { "type": "object", "properties": { "condition": { "required": true, "type": "string", "description": "Jinja template which if evaluation results in a value of True will cause the specified handler type to be executed, e.g. {{ status_code == 429 }}.", "title": "Condition" }, "type": { "description": "Response handler type to execute if specified condition evaluates to True, e.g. Backoff & Retry.", "title": "Type", "required": true, "choices": [ { "value": "backoff_retry", "title": "Backoff & Retry" }, { "value": "failure_duplicate", "title": "Failure - Duplicate" } ], "type": "string" } } }, "type": "array", "description": "Handlers to execute on API responses. Only those response handlers' which condition evaluate to True are executed.", "title": "Response Handlers" }, "variables": { "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Context variable name. This will appear in the context as 'variables.<name>'", "title": "Name" }, "value": { "type": "string", "description": "Value of this variable. This field supports Macros", "title": "Value" } } }, "type": "array", "description": "List of context variables availble to template rendering (supports Macros)", "title": "Variables" }, "pre_request_calls": { "items": { "type": "string" }, "type": "array", "description": "List of API calls to make before making this request", "title": "Pre-request Calls" }, "post_request_calls": { "items": { "type": "string" }, "type": "array", "description": "List of API calls to make after making this request", "title": "Post-request Calls" }, "request_template": { "type": "string", "description": "Jinja template for API request. Maps system schema to external application schema.", "title": "Request Template" }, "response_template": { "type": "string", "description": "Jinja template for API response. Maps external application schema to system schema.", "title": "Response Template" } } }, "type": "array", "description": "Actions used identically by many device models", "title": "Common Actions" }, "NoInstance": { "title": "No Instance", "type": "array", "items": { "type": "object", "properties": { "name": { "is_password": false, "title": "Name", "required": true, "displayable": false, "readonly": false, "maxLength": 1024, "type": "string" } } }, "maxItems": 1 } } }
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get the GUI Add form. | GET | /api/relation/WebDriverCucmServer/add/ |
|
The GUI Add form of relation/WebDriverCucmServer as JSON |
The API call to the /add/ URL can only be made from a hierarchy that allows the model type to be added. The actions in the response shows the url for the POST API call to create an instance.
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Create | POST | /api/relation/WebDriverCucmServer | hierarchy=[hierarchy] |
|
tool/Transaction/[trans pkid]to inspect the created resource and its instance pkid.
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Bulk delete [pkid1],[pkid2]... | DELETE | /api/relation/WebDriverCucmServer/ | hierarchy=[hierarchy] | {"hrefs":["/api/relation/WebDriverCucmServer/[pkid1]", "/api/relation/WebDriverCucmServer/[pkid2]", ...]} |
GET http://[host-proxy]/api/relation/WebDriverCucmServer/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Move the instance with [pkid] to [target_hierarchy] | POST | /api/tool/DataMove/?model_type=relation/WebDriverCucmServer |
|
{"hrefs": ["/api/relation/WebDriverCucmServer/[pkid]"]} |
Bulk Move | POST | /api/tool/DataMove/?model_type=relation/WebDriverCucmServer |
|
{"hrefs": ["/api/relation/WebDriverCucmServer/[pkid1]", "/api/relation/WebDriverCucmServer/[pkid2]",...]} |
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Get a selected [export_format] of the schema and instances [pkid1], [pkid2],... of relation/WebDriverCucmServer; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | POST | /api/relation/WebDriverCucmServer/export/ |
|
{ "hrefs":["/api/relation/WebDriverCucmServer/[pkid1]", "/api/relation/WebDriverCucmServer/[pkid2]",...]}} |
For export_format=json, the response is a time stamped zip file of data in JSON as in the system database. Item properties such as strings that are empty or Boolean values that are not set, are not included. The filename in the response is of the format as the example:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip Content-Language:en Content-Type:application/x-zip
For export_format=raw_xlsx, the response is a MS Excel spreadsheet with columns corresponding to the JSON format export and a response filename format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, arranged by any Field Display Policies that apply. The columns correspond with those of a Bulk Load Template export sheet. The response filename format is:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
The XLSX format can be used to bulk load instances of relation/WebDriverCucmServer and the JSON format can be used to import instances of relation/WebDriverCucmServer.
GET http://[host-proxy]/api/relation/WebDriverCucmServer/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get a compressed format of the Bulk Load spreadsheet template for relation/WebDriverCucmServer | POST | /api/relation/WebDriverCucmServer/export_bulkload_template/ |
|
The response is an attachment of the format: filetype_bulkloadsheet.xlsx.gz |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Tag | PATCH | /api/relation/WebDriverCucmServer/+tag/ |
|
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Configuration Template | GET | /api/relation/WebDriverCucmServer/configuration_template/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/ConfigurationTemplate/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Field Display Policy | GET | /api/relation/WebDriverCucmServer/field_display_policy/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/FieldDisplayPolicy/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
List | GET | /api/relation/WebDriverCucmServer/ |
|
The relation/WebDriverCucmServer schema and all instances as JSON. |
(The list will return 0 to 3 relation/WebDriverCucmServer instances)
{ "pagination": { "skip": 0, "limit": 3, "maximum_limit": 2000, "total": 0, "total_limit": null, "order_by": "name", "direction": "asc", "current": "/api/relation/WebDriverCucmServer/?skip=0&limit=3&order_by=name&direction=asc&traversal=down" }, "operations": [ "field_display_policy", "update", "help", "remove", "tag", "add", "configuration_template", "list", "export", "get", "bulk_update", "clone", "export_bulkload_template", "move" ], "meta": { "model_type": "relation/WebDriverCucmServer", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Host" }, { "name": "version", "title": "Version" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [], "tags": [], "title": "", "business_key": {}, "api_version": "21.2", "cached": true, "references": { "children": [], "parent": [ { "href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101", "pkid": "6t0ggef2c0deab00hb595101" } ], "device": [ { "href": "", "pkid": "" } ], "foreign_key": [], "self": [ { "href": "/api/relation/WebDriverCucmServer/None/", "pkid": null } ] }, "model_specific_actions": [ "update", "help", "remove", "field_display_policy", "tag", "add", "configuration_template", "list", "export", "get", "clone", "export_bulkload_template", "move" ], "schema_version": null, "actions": [ { "add": { "method": "GET", "class": "add", "href": "/api/relation/WebDriverCucmServer/add/?hierarchy=[hierarchy]", "support_async": false, "title": "Add" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/relation/WebDriverCucmServer/?hierarchy=[hierarchy]", "support_async": true, "title": "Delete" } }, { "move": { "method": "POST", "class": "move", "href": "/api/tool/DataMove/?hierarchy=[hierarchy]&model_type=relation/WebDriverCucmServer", "support_async": true, "title": "Move", "view": "/api/tool/DataMove/?auth_token=[authtoken] } }, { "export": { "method": "POST", "class": "export", "href": "/api/relation/WebDriverCucmServer/export/?hierarchy=[hierarchy]", "support_async": false, "title": "Export", "view": "/api/view/ExportData/add/?auth_token=[authtoken], "submit": "payload" } }, { "export_bulkload_template": { "method": "POST", "class": "bulkload_template", "href": "/api/relation/WebDriverCucmServer/export_bulkload_template/?hierarchy=[hierarchy]", "support_async": false, "title": "Export Bulk Load Template" } }, { "tag": { "method": "PATCH", "class": "tag", "href": "/api/relation/WebDriverCucmServer/+tag/?hierarchy=[hierarchy]", "support_async": true, "title": "Tag", "view": "/api/view/TagNameForm/add/?auth_token=[authtoken] } }, { "configuration_template": { "method": "GET", "class": "config", "href": "/api/relation/WebDriverCucmServer/configuration_template/?hierarchy=[hierarchy]", "support_async": false, "title": "Configuration Template" } }, { "field_display_policy": { "method": "GET", "class": "display_policy", "href": "/api/relation/WebDriverCucmServer/field_display_policy/?hierarchy=[hierarchy]", "support_async": false, "title": "Field Display Policy" } }, { "list": { "method": "GET", "class": "list", "href": "/api/relation/WebDriverCucmServer/?hierarchy=[hierarchy]", "support_async": false, "title": "List" } }, { "help": { "method": "GET", "class": "help", "href": "/api/relation/WebDriverCucmServer/help?hierarchy=[hierarchy]", "support_async": false, "title": "Help" } } ] }, "resources": [] }
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get the on-line Help for relation/WebDriverCucmServer. | GET | /api/relation/WebDriverCucmServer/help | hierarchy=[hierarchy] | On-line help of Model ref.: relation/WebDriverCucmServer as HTML |
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Modify | PUT | /api/relation/WebDriverCucmServer/[pkid] | hierarchy=[hierarchy] | (For payload specification) |
For Bulk modification, refer to the Bulk Modify section.
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Delete | DELETE | /api/relation/WebDriverCucmServer/[pkid] | hierarchy=[hierarchy] |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Clone instance with [pkid]. The schema rules are applied. | GET | /api/relation/WebDriverCucmServer/[pkid]/clone/?schema=&schema_rules=true |
|
A JSON payload with:
|
GET http://[host-proxy]/api/relation/WebDriverCucmServer/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Move | POST | /api/tool/DataMove/[pkid]/?model_type=relation/WebDriverCucmServer | hierarchy=[hierarchy] | If payload required: |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get a selected [export_format] of the schema and a single instance with [pkid] of relation/WebDriverCucmServer; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | GET | /api/relation/WebDriverCucmServer/[pkid]/export |
|
The response is an attachment. Refer to the list below. |
For export_format=raw_xlsx, the response is a "raw" MS Excel spreadsheet with columns corresponding to the JSON format export and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, formatted to show all columns and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=json, the response is a time stamped zip file of data in JSON and a response format:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip Content-Language:en Content-Type:application/x-zip
The XLSX format can be used to bulk load instances of relation/WebDriverCucmServer and the JSON format can be used to import instances of relation/WebDriverCucmServer.
For Bulk Export, refer to the Bulk Export section.
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Tag | PATCH | /api/relation/WebDriverCucmServer/[pkid]/+tag | hierarchy=[hierarchy] | If payload required: |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get | GET | /api/relation/WebDriverCucmServer/[pkid] | hierarchy=[hierarchy] | The relation/WebDriverCucmServer instance with [pkid]. |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Help | GET | /api/relation/WebDriverCucmServer/[pkid]/help | hierarchy=[hierarchy] | The on-line Help for relation/WebDriverCucmServer. |