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
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTCreate a command template
        • POSTCreate an analytic template
        • POSTDelete a command template
        • POSTDelete an analytic template
        • POSTExport template
        • POSTFind the diff of two config strings
        • GETGet a command template by name
        • GETGet all analytic templates
        • GETGet all command templates
        • GETGet an analytic template by name
        • POSTGet filtered devices
        • GETGet filtered devices
        • GETGet filtered devices with detailed query results
        • POSTImport template
        • POSTMOP diff array
        • POSTMOP get boot flash
        • POSTMOP passthrough
        • POSTRetry a task automatically
        • POSTRun a command against a device
        • POSTRun a command against devices
        • POSTRun an analytics template
        • POSTRun an analytics template for devices
        • POSTRun command template
        • POSTRun single command from template
        • POSTUpdate a command template
        • POSTUpdate an analytic template
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceMop

Find the diff of two config strings

POST
http://localhost:3000/mop/diff
POST
/mop/diff
$curl -X POST http://localhost:3000/mop/diff \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1[
2 {
3 "count": 1,
4 "value": "ip http secure-server\n"
5 },
6 {
7 "count": 1,
8 "value": "ip route 0.0.0.0 0.0.0.0 GigabitEthernet1 172.20.100.1",
9 "removed": true
10 },
11 {
12 "count": 1,
13 "value": "ip route 0.0.0.0 0.0.0.0 GigabitEthernet1 172.20.100.2",
14 "added": true
15 }
16]
Find the diff of two config strings.
Was this page helpful?
Previous

Get a command template by name

Next
Built with

Authentication

AuthorizationBasic

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

Request

request body
value_astringOptional
value_bstringOptional

Response

Result of the diff.
countdouble
valuestring
addedboolean
removedboolean

Errors

500
Internal Server Error