[Index]
A reusable agent playbook that defines structured steps and workflows for systematic task execution
Model ref.: data/AgentPlaybook
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": {
"playbook_id": {
"title": "Playbook ID",
"description": "Unique system-wide identifier for the playbook (e.g., teams_call_quality)",
"type": "string",
"required": true,
"pattern": "^[a-z][a-z0-9_]*$"
},
"name": {
"title": "Name",
"description": "Display name of the playbook",
"type": "string",
"required": true
},
"description": {
"title": "Description",
"description": "Purpose and scope of the playbook",
"type": "string",
"required": true
},
"enabled": {
"title": "Enabled",
"description": "Whether this playbook is currently active and available for use",
"type": "boolean",
"required": false,
"default": true
},
"applicability_criteria": {
"title": "Applicability Criteria",
"description": "Keywords and patterns indicating when this playbook is relevant",
"type": "array",
"required": true,
"items": {
"type": "string"
}
},
"required_inputs": {
"title": "Required Inputs",
"description": "List of required inputs for this playbook to execute",
"type": "array",
"items": {
"type": "string"
}
},
"required_datasources": {
"title": "Required Datasources",
"description": "List of required datasources for this playbook to execute",
"type": "array",
"items": {
"type": "string"
}
},
"steps": {
"title": "Steps",
"description": "List of diagnostic steps to execute",
"type": "array",
"required": true,
"items": {
"type": "object",
"properties": {
"goal": {
"title": "Goal",
"description": "What this step aims to achieve",
"type": "string",
"required": true
},
"rationale": {
"title": "Rationale",
"description": "Why this step is needed",
"type": "string",
"required": true
},
"exit_on_failure": {
"title": "Exit on Failure",
"description": "If true, stop execution immediately when this step fails after all retry attempts. If false, continue to next step even if this one fails.",
"type": "boolean",
"required": false,
"default": false
},
"parallel": {
"title": "Parallel Execution",
"description": "If true, this step can execute in parallel with the next step. Steps marked as parallel will be grouped together and executed concurrently for improved performance.",
"type": "boolean",
"required": false,
"default": false
}
}
}
},
"presentation_schema": {
"title": "Presentation Schema",
"description": "Output format definition including sections and fields",
"type": "object",
"required": true,
"properties": {
"type": {
"title": "Type",
"description": "The type of presentation format",
"type": "string",
"required": true,
"choices": [
{
"value": "narrative",
"title": "Narrative - Structured narrative format with sections"
}
]
},
"sections": {
"title": "Sections",
"description": "List of sections in the presentation",
"type": "array",
"required": true,
"items": {
"type": "object",
"properties": {
"header": {
"title": "Header",
"description": "Section header/title",
"type": "string",
"required": true
},
"description": {
"title": "Description",
"description": "Description of what this section contains",
"type": "string",
"required": false
}
}
}
},
"note": {
"title": "Note",
"description": "Additional notes about the presentation format",
"type": "string",
"required": false
}
}
},
"tags": {
"title": "Tags",
"description": "Additional tags for categorization",
"type": "array",
"required": false,
"items": {
"type": "string"
}
}
},
"schema_version": "1.3.1"
}
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get the GUI Add form. | GET | /api/data/AgentPlaybook/add/ |
|
The GUI Add form of data/AgentPlaybook 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/AgentPlaybook | 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/AgentPlaybook/ | hierarchy=[hierarchy] | {"hrefs":["/api/data/AgentPlaybook/[pkid1]", "/api/data/AgentPlaybook/[pkid2]", ...]} |
GET http://[host-proxy]/api/data/AgentPlaybook/?hierarchy=[hierarchy]&format=json
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Bulk Modify | GET | /api/data/AgentPlaybook/bulk_update/?schema=&schema_rules=true |
|
|
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Bulk Modify | POST | /api/data/AgentPlaybook/bulk_update/ |
|
For example: {"data":{"name":"value"}, "meta":{}, "request_meta":{ "hrefs":["/api/v0/data/AgentPlaybook/[pkid1]", "/api/v0/data/AgentPlaybook/[pkid2]",...]}} |
GET http://[host-proxy]/api/data/AgentPlaybook/?hierarchy=[hierarchy]&format=json
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Get a selected [export_format] of the schema and instances [pkid1], [pkid2],... of data/AgentPlaybook; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | POST | /api/data/AgentPlaybook/export/ |
|
{ "hrefs":["/api/data/AgentPlaybook/[pkid1]", "/api/data/AgentPlaybook/[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/AgentPlaybook and the JSON format can be used to import instances of data/AgentPlaybook.
GET http://[host-proxy]/api/data/AgentPlaybook/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get a compressed format of the Bulk Load spreadsheet template for data/AgentPlaybook | POST | /api/data/AgentPlaybook/export_bulkload_template/ |
|
The response is an attachment of the format: filetype_bulkloadsheet.xlsx.gz |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Tag | PATCH | /api/data/AgentPlaybook/+tag/ |
|
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Tag Version | PATCH | /api/data/AgentPlaybook/+tag_version/ |
|
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Configuration Template | GET | /api/data/AgentPlaybook/configuration_template/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/ConfigurationTemplate/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Field Display Policy | GET | /api/data/AgentPlaybook/field_display_policy/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/FieldDisplayPolicy/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Migration Template | GET | /api/data/AgentPlaybook/migration/ |
|
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| List | GET | /api/data/AgentPlaybook/ |
|
The data/AgentPlaybook schema and all instances as JSON. |
(The list will return 0 to 3 data/AgentPlaybook instances)
{
"pagination": {
"skip": 0,
"limit": 3,
"maximum_limit": 2000,
"total": 1,
"total_limit": null,
"order_by": "playbook_id",
"direction": "asc",
"current": "/api/data/AgentPlaybook/?skip=0&limit=3&order_by=playbook_id&direction=asc&traversal=down"
},
"operations": [
"help",
"export",
"configuration_template",
"field_display_policy",
"list",
"get",
"update",
"bulk_update_form",
"migration",
"add",
"remove",
"export_bulkload_template",
"transform"
],
"meta": {
"model_type": "data/AgentPlaybook",
"summary_attrs": [
{
"name": "playbook_id",
"title": "Playbook ID"
},
{
"name": "name",
"title": "Name"
},
{
"name": "description",
"title": "Description"
},
{
"name": "enabled",
"title": "Enabled"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "",
"business_key": {
"unique": [
"playbook_id"
],
"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",
"list",
"migration",
"remove",
"tag",
"tag_version",
"update"
],
"schema_version": "1.3.1",
"actions": [
{
"add": {
"method": "GET",
"class": "add",
"href": "/api/data/AgentPlaybook/add/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Add"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/AgentPlaybook/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"bulk_update_form": {
"method": "GET",
"class": "update",
"href": "/api/data/AgentPlaybook/bulk_update/?hierarchy=[hierarchy]&schema=&schema_rules=true",
"support_async": false,
"title": "Bulk Modify"
}
},
{
"export": {
"method": "POST",
"class": "export",
"href": "/api/data/AgentPlaybook/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/AgentPlaybook/export_bulkload_template/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export Bulk Load Template"
}
},
{
"tag": {
"method": "PATCH",
"class": "tag",
"href": "/api/data/AgentPlaybook/+tag/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Tag",
"view": "/api/view/TagNameForm/add/?auth_token=[authtoken]
}
},
{
"tag_version": {
"method": "PATCH",
"class": "tag_version",
"href": "/api/data/AgentPlaybook/+tag_version/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Tag Version",
"view": "/api/view/TagVersionForm/add/?auth_token=[authtoken]
}
},
{
"configuration_template": {
"method": "GET",
"class": "config",
"href": "/api/data/AgentPlaybook/configuration_template/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Configuration Template"
}
},
{
"field_display_policy": {
"method": "GET",
"class": "display_policy",
"href": "/api/data/AgentPlaybook/field_display_policy/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Field Display Policy"
}
},
{
"migration": {
"method": "GET",
"class": "migration",
"href": "/api/data/AgentPlaybook/migration/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Migration Template"
}
},
{
"list": {
"method": "GET",
"class": "list",
"href": "/api/data/AgentPlaybook/?hierarchy=[hierarchy]",
"support_async": false,
"title": "List"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/AgentPlaybook/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"resources": [
{
"data": {
"playbook_id": "teams_call_quality",
"name": "Teams Call Quality Diagnosis",
"description": "Diagnose poor Teams calling experience for a specific user by analyzing call records, network conditions, and comparing against baselines",
"enabled": true,
"applicability_criteria": [
"Query mentions 'Teams' or 'Microsoft Teams'",
"Query mentions calling, calls, or voice/video quality issues",
"Query mentions specific user having problems",
"Query involves troubleshooting bad call quality or reliability"
],
"required_inputs": [
"user_name_or_email",
"time_period"
],
"required_datasources": [
"assurance"
],
"steps": [
{
"goal": "Identify the user from partial information",
"rationale": "Convert partial user identifier (e.g., display name) to precise case-sensitive identifier such as User Principal Name.",
"exit_on_failure": true,
"parallel": false
},
{
"goal": "Fetch bad calls for the user within time range",
"rationale": "Retrieve all calls with poor quality or failures to establish problem scope. Focus on Poor quality in general including video, audio, vbss (sharing), or presence of session failures. Only filter by user principal name. Tenant will not be known at this point. Extract tenant information from the bad calls for subsequent steps.",
"parallel": false
},
{
"goal": "Analyze devices used",
"rationale": "Understand the devices that were used for the bad calls. We need to know if there are recommendations regarding device compatibility and upgrade.",
"parallel": true
},
{
"goal": "Analyze network and session details for bad calls",
"rationale": "Identify network subnets and failure points to pinpoint infrastructure issues",
"parallel": true
},
{
"goal": "Examine segment-level quality metrics",
"rationale": "Drill into specific segment quality data (caller/callee) to find patterns in quality degradation.",
"parallel": true
},
{
"goal": "Compare user's quality against baseline and peers",
"rationale": "Determine if issue is user-specific or widespread by comparing against historical data and peer users in the same tenant. Compare the number of calls the user had in total and percentage of bad calls over the period. Show similar data for other users in the same tenant for the same period. Include a clear count of user's bad calls, user's good calls, peers' bad calls, and peers' good calls.",
"parallel": true
}
],
"presentation_schema": {
"type": "narrative",
"sections": [
{
"header": "Summary",
"description": "High-level overview of the analysis. Include key findings, business impact, and most critical issues. Keep concise (3-5 sentences). Executive summary of findings"
},
{
"header": "User Profile",
"description": "User identification and basic info. Relevant context about the user, tenant, or environment. Format as bullet points with key-value pairs."
},
{
"header": "Problem Scope",
"description": "Scope and impact assessment. Quantify affected users/systems. Describe business impact."
},
{
"header": "Key Observations",
"description": "Summarized findings and analysis from troubleshooting steps. Use tables for metrics, bullet points for findings. Include specific data points and patterns."
},
{
"header": "Device Analysis",
"description": "Device-related findings. Be specific about the devices that were used for the bad calls. Use tables for metrics, bullet points for findings. Include specific device information and patterns."
},
{
"header": "Network Analysis",
"description": "Network-related findings. Be specific about the networks in question. Use tables for metrics, bullet points for findings. Include specific data points and patterns."
},
{
"header": "Quality Metrics",
"description": "Call quality measurements. Be specific about the quality metrics in question. Use tables for metrics, bullet points for findings. Include specific data points and patterns."
},
{
"header": "Comparison",
"description": "Comparison with baseline and peers. Format appropriately based on content type, use tables for comparisons."
},
{
"header": "Root Causes",
"description": "Identified root causes with an indication of impact. List each cause with supporting evidence. Order by likelihood/impact."
},
{
"header": "Recommendations",
"description": "Prioritized action items to resolve issues. Use numbered list or checkboxes. Include rationale and expected impact. Mark priority (High/Medium/Low). Order by priority from highest to lowest."
}
]
},
"tags": [
"teams",
"call-quality",
"troubleshooting",
"network-analysis"
],
"pkid": "691db79fdb8a12008e7c9021",
"hierarchy_friendly_name": "sys (System)",
"hierarchy_path": "sys"
},
"meta": {
"model_type": "data/AgentPlaybook",
"summary_attrs": [
{
"name": "playbook_id",
"title": "Playbook ID"
},
{
"name": "name",
"title": "Name"
},
{
"name": "description",
"title": "Description"
},
{
"name": "enabled",
"title": "Enabled"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [
"base",
"core",
"wingman",
"teams"
],
"title": "teams_call_quality",
"business_key": {
"unique": [
"playbook_id"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": true,
"references": {
"parent": [
{
"pkid": "6t0ggef2c0deab00hb595101",
"href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"owner": [
{
"pkid": ""
}
],
"self": [
{
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/",
"pkid": "691db79fdb8a12008e7c9020"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"691db79fdb8a12008e7c9020"
],
"schema_version": "1.3.1",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"tag": {
"method": "PATCH",
"class": "tag",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/+tag/",
"support_async": true,
"title": "Tag",
"view": "/api/view/TagNameForm/add/"
}
},
{
"tag_version": {
"method": "PATCH",
"class": "tag_version",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/+tag_version/",
"support_async": true,
"title": "Tag Version",
"view": "/api/view/TagVersionForm/add/"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "691db79fdb8a12008e7c9020"
}
]
}
(Show the first instance)
{
"data": {
"playbook_id": "teams_call_quality",
"name": "Teams Call Quality Diagnosis",
"description": "Diagnose poor Teams calling experience for a specific user by analyzing call records, network conditions, and comparing against baselines",
"enabled": true,
"applicability_criteria": [
"Query mentions 'Teams' or 'Microsoft Teams'",
"Query mentions calling, calls, or voice/video quality issues",
"Query mentions specific user having problems",
"Query involves troubleshooting bad call quality or reliability"
],
"required_inputs": [
"user_name_or_email",
"time_period"
],
"required_datasources": [
"assurance"
],
"steps": [
{
"goal": "Identify the user from partial information",
"rationale": "Convert partial user identifier (e.g., display name) to precise case-sensitive identifier such as User Principal Name.",
"exit_on_failure": true,
"parallel": false
},
{
"goal": "Fetch bad calls for the user within time range",
"rationale": "Retrieve all calls with poor quality or failures to establish problem scope. Focus on Poor quality in general including video, audio, vbss (sharing), or presence of session failures. Only filter by user principal name. Tenant will not be known at this point. Extract tenant information from the bad calls for subsequent steps.",
"parallel": false
},
{
"goal": "Analyze devices used",
"rationale": "Understand the devices that were used for the bad calls. We need to know if there are recommendations regarding device compatibility and upgrade.",
"parallel": true
},
{
"goal": "Analyze network and session details for bad calls",
"rationale": "Identify network subnets and failure points to pinpoint infrastructure issues",
"parallel": true
},
{
"goal": "Examine segment-level quality metrics",
"rationale": "Drill into specific segment quality data (caller/callee) to find patterns in quality degradation.",
"parallel": true
},
{
"goal": "Compare user's quality against baseline and peers",
"rationale": "Determine if issue is user-specific or widespread by comparing against historical data and peer users in the same tenant. Compare the number of calls the user had in total and percentage of bad calls over the period. Show similar data for other users in the same tenant for the same period. Include a clear count of user's bad calls, user's good calls, peers' bad calls, and peers' good calls.",
"parallel": true
}
],
"presentation_schema": {
"type": "narrative",
"sections": [
{
"header": "Summary",
"description": "High-level overview of the analysis. Include key findings, business impact, and most critical issues. Keep concise (3-5 sentences). Executive summary of findings"
},
{
"header": "User Profile",
"description": "User identification and basic info. Relevant context about the user, tenant, or environment. Format as bullet points with key-value pairs."
},
{
"header": "Problem Scope",
"description": "Scope and impact assessment. Quantify affected users/systems. Describe business impact."
},
{
"header": "Key Observations",
"description": "Summarized findings and analysis from troubleshooting steps. Use tables for metrics, bullet points for findings. Include specific data points and patterns."
},
{
"header": "Device Analysis",
"description": "Device-related findings. Be specific about the devices that were used for the bad calls. Use tables for metrics, bullet points for findings. Include specific device information and patterns."
},
{
"header": "Network Analysis",
"description": "Network-related findings. Be specific about the networks in question. Use tables for metrics, bullet points for findings. Include specific data points and patterns."
},
{
"header": "Quality Metrics",
"description": "Call quality measurements. Be specific about the quality metrics in question. Use tables for metrics, bullet points for findings. Include specific data points and patterns."
},
{
"header": "Comparison",
"description": "Comparison with baseline and peers. Format appropriately based on content type, use tables for comparisons."
},
{
"header": "Root Causes",
"description": "Identified root causes with an indication of impact. List each cause with supporting evidence. Order by likelihood/impact."
},
{
"header": "Recommendations",
"description": "Prioritized action items to resolve issues. Use numbered list or checkboxes. Include rationale and expected impact. Mark priority (High/Medium/Low). Order by priority from highest to lowest."
}
]
},
"tags": [
"teams",
"call-quality",
"troubleshooting",
"network-analysis"
],
"pkid": "691db79fdb8a12008e7c9021"
},
"meta": {
"model_type": "data/AgentPlaybook",
"summary_attrs": [
{
"name": "playbook_id",
"title": "Playbook ID"
},
{
"name": "name",
"title": "Name"
},
{
"name": "description",
"title": "Description"
},
{
"name": "enabled",
"title": "Enabled"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [
"base",
"core",
"wingman",
"teams"
],
"title": "teams_call_quality",
"business_key": {
"unique": [
"playbook_id"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": false,
"references": {
"parent": [
{
"href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101",
"pkid": "6t0ggef2c0deab00hb595101"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"owner": [
{
"pkid": ""
}
],
"children": [],
"self": [
{
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/",
"pkid": "691db79fdb8a12008e7c9020"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"691db79fdb8a12008e7c9020"
],
"schema_version": "1.3.1",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/clone/?hierarchy=[hierarchy]&schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/export/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/?auth_token=[authtoken],
"submit": "payload"
}
},
{
"tag": {
"method": "PATCH",
"class": "tag",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/+tag/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Tag",
"view": "/api/view/TagNameForm/add/?auth_token=[authtoken]
}
},
{
"tag_version": {
"method": "PATCH",
"class": "tag_version",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/+tag_version/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Tag Version",
"view": "/api/view/TagVersionForm/add/?auth_token=[authtoken]
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/AgentPlaybook/691db79fdb8a12008e7c9020/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"pkid": "691db79fdb8a12008e7c9020"
}
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get the on-line Help for data/AgentPlaybook. | GET | /api/data/AgentPlaybook/help | hierarchy=[hierarchy] | On-line help of Model ref.: data/AgentPlaybook as HTML |
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Modify | PUT | /api/data/AgentPlaybook/[pkid] | hierarchy=[hierarchy] | (For payload specification) |
For Bulk modification, refer to the Bulk Modify section.
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Delete | DELETE | /api/data/AgentPlaybook/[pkid] | hierarchy=[hierarchy] |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Clone instance with [pkid]. The schema rules are applied. | GET | /api/data/AgentPlaybook/[pkid]/clone/?schema=&schema_rules=true |
|
A JSON payload with:
|
GET http://[host-proxy]/api/data/AgentPlaybook/?hierarchy=[hierarchy]&format=json
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get a selected [export_format] of the schema and a single instance with [pkid] of data/AgentPlaybook; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | GET | /api/data/AgentPlaybook/[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/AgentPlaybook and the JSON format can be used to import instances of data/AgentPlaybook.
For Bulk Export, refer to the Bulk Export section.
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Tag | PATCH | /api/data/AgentPlaybook/[pkid]/+tag | hierarchy=[hierarchy] | If payload required: |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get | GET | /api/data/AgentPlaybook/[pkid] | hierarchy=[hierarchy] | The data/AgentPlaybook instance with [pkid]. |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Help | GET | /api/data/AgentPlaybook/[pkid]/help | hierarchy=[hierarchy] | The on-line Help for data/AgentPlaybook. |