[Index]
Stores generic driver connection parameters for interfacing to an external service.
Model ref.: data/AudiocodesSBC
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", "description": "Name for this instance of generic driver connection details.", "type": "string", "required": true }, "description": { "title": "Description", "description": "Description for this instance of generic driver connection details.", "type": "string", "required": true }, "version": { "title": "Version", "description": "Version of models to use.", "type": "string", "required": true, "pattern": "^[0-9]+?(\\.[0-9]+?)+?$" }, "auth_method": { "title": "Authentication Method", "description": "Type of authentication to use when interfacing to the external service.", "type": "string", "required": true, "choices": [ { "value": "BASIC", "title": "HTTP Basic Authentication" }, { "value": "OAUTH", "title": "OAuth(OApen Authorization)" }, { "value": "SESSION", "title": "Session Based Authentication" }, { "value": "OCIP", "title": "Broadsoft OCIP socket based authentication protocol" } ] }, "username": { "title": "Username", "description": "Username to use with specified authentication method.", "type": "string", "required": false }, "password": { "title": "Password", "description": "Password to use with specified authentication method.", "type": "string", "required": false, "is_password": true, "store_encrypted": true }, "token": { "title": "Token", "description": "Token to use with specified authentication method.", "type": "string", "required": false, "is_password": true, "store_encrypted": true }, "test_connection_uri": { "title": "Test Connection URI", "description": "URI to use when testing connection to external service, e.g. https://service.domain/api/health, {{ driver_parameters.host_base }}/status", "type": "string" }, "secure_driver_parameters": { "title": "Secure Driver Parameters", "description": "Additional secure parameters for the driver", "type": "array", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "Name of additional secure driver parameter.", "type": "string", "required": true }, "value": { "title": "Value", "description": "Value of additional secure driver parameter.", "type": "string", "required": true, "is_password": true, "store_encrypted": true } } } }, "driver_parameters": { "title": "Driver Parameters", "description": "Additional parameters for the driver", "type": "array", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "Name of additional driver parameter.", "type": "string", "required": true }, "value": { "title": "Value", "description": "Value of additional driver parameter.", "type": "string", "required": true } } } }, "default_request_headers": { "title": "Default Request Headers", "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.", "type": "array", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "Name of HTTP request header, e.g. Accept.", "type": "string", "required": true }, "value": { "title": "Value", "description": "Value of HTTP request header, e.g. text/plain.", "type": "string", "required": true } } } }, "default_response_handlers": { "title": "Default Response Handlers", "description": "Default handlers to execute on all API operation responses. Only those response handlers' which condition evaluates to True are executed.", "type": "array", "items": { "type": "object", "properties": { "condition": { "title": "Condition", "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": "string", "required": true }, "type": { "title": "Type", "description": "Response handler type to execute if specified condition evaluates to True, e.g. Backoff & Retry.", "type": "string", "required": true, "choices": [ { "value": "backoff_retry", "title": "Backoff & Retry" }, { "value": "failure_duplicate", "title": "Failure - Duplicate" }, { "value": "invalid_session", "title": "Invalid Session" } ] } } } }, "session_based_auth_request": { "title": "Session Based Auth Request", "description": "Describes the API request required to obtain a valid auth token.", "type": "object", "properties": { "login_uri": { "title": "Login URI", "description": "URI for the initial Login request. This is a jinja template with custom functions and driver parameter context available.", "type": "string" }, "login_http_method": { "title": "Login HTTP Method", "description": "HTTP method for initial login request.", "type": "string", "default": "POST", "choices": [ { "value": "GET", "title": "GET" }, { "value": "POST", "title": "POST" } ] }, "login_request_headers": { "title": "Login Request Headers", "description": "Request headers for the initial login request.", "type": "array", "items": { "type": "object", "properties": { "session_header_name": { "title": "Header Name", "description": "Name of session request header, e.g. Cookie.", "type": "string" }, "session_header_value": { "title": "Header Value", "description": "Value of session request header, e.g. session=12345. This is a jinja template with custom functions and driver parameter context available.", "type": "string" } } } }, "request_template": { "title": "Login Request Body Template (POST)", "description": "Request body for the initial login request if the method is POST. This is a jinja template with custom functions and driver parameter context available.", "type": "string" }, "session_expire_minutes": { "title": "Session Expire Time (min)", "description": "The amount of time a session is valid specified in minutes.", "type": "integer" }, "session_headers": { "title": "Headers To Cache", "description": "Session headers to capture from the login response and include for requests after the initial login.", "type": "array", "items": { "type": "object", "properties": { "session_header_name": { "title": "Header Name", "description": "Name of session request header, e.g. Cookie.", "type": "string" }, "session_header_value": { "title": "Header Value", "description": "Value of session request header, e.g. session=12345. This is a jinja template with custom functions and response body, header & cookie context available.", "type": "string" } } } } } }, "common_actions": { "title": "Common Actions", "description": "Actions used identically by many device models", "type": "array", "items": { "type": "object", "properties": { "action": { "title": "Action", "description": "Name of the device model operation for e.g. add", "type": "string", "required": true }, "uri": { "title": "URI", "description": "URI for the API request", "type": "string" }, "target": { "title": "Target", "description": "Target of this operation", "type": "string", "required": false, "default": "HTTP", "choices": [ { "value": "HTTP", "title": "HTTP" }, { "value": "Browser", "title": "Browser" }, { "value": "SOAP", "title": "SOAP" }, { "value": "Socket", "title": "Socket" }, { "value": "winrm", "title": "winrm" } ] }, "request_format": { "title": "Request Format", "description": "Request format", "type": "string", "required": false, "default": "JSON", "choices": [ { "value": "JSON", "title": "JSON" }, { "value": "XML", "title": "XML" }, { "value": "string", "title": "string" } ] }, "response_format": { "title": "Response Format", "description": "Response format", "type": "string", "required": false, "default": "JSON", "choices": [ { "value": "JSON", "title": "JSON" }, { "value": "XML", "title": "XML" } ] }, "http_method": { "title": "HTTP Method", "description": "HTTP method for API request", "type": "string", "default": "get", "choices": [ { "value": "GET", "title": "GET" }, { "value": "POST", "title": "POST" }, { "value": "PATCH", "title": "PATCH" }, { "value": "PUT", "title": "PUT" }, { "value": "DELETE", "title": "DELETE" } ] }, "response_code_template": { "title": "Response Code Template", "description": "Jinja template for mapping API endpoint specific error/status response", "type": "string" }, "request_headers": { "title": "Request Headers", "description": "HTTP request headers to send with API operation request. Takes precedence over default request headers specified on related Connection Parameters Type instance.", "type": "array", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "Name of HTTP request header, e.g. Accept.", "type": "string", "required": true }, "value": { "title": "Value", "description": "Value of HTTP request header, e.g. text/plain.", "type": "string", "required": true } } } }, "response_handlers": { "title": "Response Handlers", "description": "Handlers to execute on API responses. Only those response handlers' which condition evaluate to True are executed.", "type": "array", "items": { "type": "object", "properties": { "condition": { "title": "Condition", "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": "string", "required": true }, "type": { "title": "Type", "description": "Response handler type to execute if specified condition evaluates to True, e.g. Backoff & Retry.", "type": "string", "required": true, "choices": [ { "value": "backoff_retry", "title": "Backoff & Retry" }, { "value": "failure_duplicate", "title": "Failure - Duplicate" } ] } } } }, "variables": { "title": "Variables", "description": "List of context variables availble to template rendering (supports Macros)", "type": "array", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "Context variable name. This will appear in the context as 'variables.<name>'", "type": "string" }, "value": { "title": "Value", "description": "Value of this variable. This field supports Macros", "type": "string" } } } }, "pre_request_calls": { "title": "Pre-request Calls", "description": "List of API calls to make before making this request", "type": "array", "items": { "type": "string" } }, "post_request_calls": { "title": "Post-request Calls", "description": "List of API calls to make after making this request", "type": "array", "items": { "type": "string" } }, "request_template": { "title": "Request Template", "description": "Jinja template for API request. Maps system schema to external application schema.", "type": "string" }, "response_template": { "title": "Response Template", "description": "Jinja template for API response. Maps external application schema to system schema.", "type": "string" } } } } }, "schema_version": "0.0" }
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get the GUI Add form. | GET | /api/data/AudiocodesSBC/add/ |
|
The GUI Add form of data/AudiocodesSBC 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/data/AudiocodesSBC | 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/data/AudiocodesSBC/ | hierarchy=[hierarchy] | {"hrefs":["/api/data/AudiocodesSBC/[pkid1]", "/api/data/AudiocodesSBC/[pkid2]", ...]} |
GET http://[host-proxy]/api/data/AudiocodesSBC/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Bulk Modify | GET | /api/data/AudiocodesSBC/bulk_update/?schema=&schema_rules=true |
|
|
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Bulk Modify | POST | /api/data/AudiocodesSBC/bulk_update/ |
|
For example: {"data":{"name":"value"}, "meta":{}, "request_meta":{ "hrefs":["/api/v0/data/AudiocodesSBC/[pkid1]", "/api/v0/data/AudiocodesSBC/[pkid2]",...]}} |
GET http://[host-proxy]/api/data/AudiocodesSBC/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Get a selected [export_format] of the schema and instances [pkid1], [pkid2],... of data/AudiocodesSBC; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | POST | /api/data/AudiocodesSBC/export/ |
|
{ "hrefs":["/api/data/AudiocodesSBC/[pkid1]", "/api/data/AudiocodesSBC/[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 data/AudiocodesSBC and the JSON format can be used to import instances of data/AudiocodesSBC.
GET http://[host-proxy]/api/data/AudiocodesSBC/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get a compressed format of the Bulk Load spreadsheet template for data/AudiocodesSBC | POST | /api/data/AudiocodesSBC/export_bulkload_template/ |
|
The response is an attachment of the format: filetype_bulkloadsheet.xlsx.gz |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Configuration Template | GET | /api/data/AudiocodesSBC/configuration_template/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/ConfigurationTemplate/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Field Display Policy | GET | /api/data/AudiocodesSBC/field_display_policy/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/FieldDisplayPolicy/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Migration Template | GET | /api/data/AudiocodesSBC/migration/ |
|
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
List | GET | /api/data/AudiocodesSBC/ |
|
The data/AudiocodesSBC schema and all instances as JSON. |
(The list will return 0 to 3 data/AudiocodesSBC instances)
{ "pagination": { "skip": 0, "limit": 3, "maximum_limit": 2000, "total": 0, "total_limit": null, "order_by": "name", "direction": "asc", "current": "/api/data/AudiocodesSBC/?skip=0&limit=3&order_by=name&direction=asc&traversal=down" }, "operations": [ "field_display_policy", "update", "help", "remove", "move", "add", "export", "list", "configuration_template", "get", "bulk_update_form", "migration", "transform", "export_bulkload_template" ], "meta": { "model_type": "data/AudiocodesSBC", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Description" }, { "name": "version", "title": "Version" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [], "tags": [], "title": "?", "business_key": { "unique": [ "name" ], "hierarchy": true }, "api_version": "21.2", "cached": true, "references": { "children": [], "parent": [ { "href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101", "pkid": "6t0ggef2c0deab00hb595101" } ], "device": [ { "href": "", "pkid": "" } ], "foreign_key": [] }, "model_specific_actions": [ "add", "bulk_update_form", "clone", "configuration_template", "export", "export_bulkload_template", "field_display_policy", "get", "help", "import", "list", "migration", "remove", "test_connect", "update" ], "schema_version": "0.0", "actions": [ { "add": { "method": "GET", "class": "add", "href": "/api/data/AudiocodesSBC/add/?hierarchy=[hierarchy]", "support_async": false, "title": "Add" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/data/AudiocodesSBC/?hierarchy=[hierarchy]", "support_async": true, "title": "Delete" } }, { "bulk_update_form": { "method": "GET", "class": "update", "href": "/api/data/AudiocodesSBC/bulk_update/?hierarchy=[hierarchy]&schema=&schema_rules=true", "support_async": false, "title": "Bulk Modify" } }, { "export": { "method": "POST", "class": "export", "href": "/api/data/AudiocodesSBC/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/data/AudiocodesSBC/export_bulkload_template/?hierarchy=[hierarchy]", "support_async": false, "title": "Export Bulk Load Template" } }, { "configuration_template": { "method": "GET", "class": "config", "href": "/api/data/AudiocodesSBC/configuration_template/?hierarchy=[hierarchy]", "support_async": false, "title": "Configuration Template" } }, { "field_display_policy": { "method": "GET", "class": "display_policy", "href": "/api/data/AudiocodesSBC/field_display_policy/?hierarchy=[hierarchy]", "support_async": false, "title": "Field Display Policy" } }, { "migration": { "method": "GET", "class": "migration", "href": "/api/data/AudiocodesSBC/migration/?hierarchy=[hierarchy]", "support_async": false, "title": "Migration Template" } }, { "list": { "method": "GET", "class": "list", "href": "/api/data/AudiocodesSBC/?hierarchy=[hierarchy]", "support_async": false, "title": "List" } }, { "help": { "method": "GET", "class": "help", "href": "/api/data/AudiocodesSBC/help?hierarchy=[hierarchy]", "support_async": false, "title": "Help" } } ] }, "resources": [] }
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get the on-line Help for data/AudiocodesSBC. | GET | /api/data/AudiocodesSBC/help | hierarchy=[hierarchy] | On-line help of Model ref.: data/AudiocodesSBC as HTML |
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Modify | PUT | /api/data/AudiocodesSBC/[pkid] | hierarchy=[hierarchy] | (For payload specification) |
For Bulk modification, refer to the Bulk Modify section.
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Delete | DELETE | /api/data/AudiocodesSBC/[pkid] | hierarchy=[hierarchy] |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Clone instance with [pkid]. The schema rules are applied. | GET | /api/data/AudiocodesSBC/[pkid]/clone/?schema=&schema_rules=true |
|
A JSON payload with:
|
GET http://[host-proxy]/api/data/AudiocodesSBC/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Test Connection | POST | /api/data/AudiocodesSBC/[pkid]/test_connect | hierarchy=[hierarchy] | If payload required: |
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Import | POST | /api/data/AudiocodesSBC/[pkid]/import | 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 data/AudiocodesSBC; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | GET | /api/data/AudiocodesSBC/[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 data/AudiocodesSBC and the JSON format can be used to import instances of data/AudiocodesSBC.
For Bulk Export, refer to the Bulk Export section.
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get | GET | /api/data/AudiocodesSBC/[pkid] | hierarchy=[hierarchy] | The data/AudiocodesSBC instance with [pkid]. |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Help | GET | /api/data/AudiocodesSBC/[pkid]/help | hierarchy=[hierarchy] | The on-line Help for data/AudiocodesSBC. |