REST Resources

/api/space/device-management/resolve-key-conflict

The following operation is supported on this resource:

  • POST - Resolves the RSA Key Conflict for the given Devices
POST /resolve-key-conflictVersion 3

Resolves the RSA Key Conflict for the given Devices.

Sample Usage

This API makes an asynchronous method call; so, you can optionally specify queue and schedule parameters:

POST /resolve-key-conflict?queue=<queue>&schedule=<schedule>


Note: The queue URL denoted by <queue> must have been created already.


  • Parameters:
    NameTypeURI TypeDescriptionRequired
    queueQueue URLQueryA fully qualified queue URL, where job progress notifications will be sent (See Asynchronous API Usage)N
    schedulecron-like-expressionQuerySchedule this API in the future, by specifying a cron-like-expression (See Job Scheduling)N
  • Sample Input XML:
    <resolve-key-conflict-request>
         <devices>
               <device>
                   <ip-address>192.168.1.100</ip-address>
                   <user-name>root</user-name>
                   <password>********</password>
               </device>
         </devices>
    </resolve-key-conflict-request>

  • Sample Output XML:
    <task href="/api/space/job-management/jobs/1081379">
      <id>1081379</id>
    </task>

  • Sample Input JSON:
    {
       "resolve-key-conflict-request" : {
         "devices" : {
           "device" : {
             "ip-address" : "192.168.1.100" ,
             "user-name" : "root" ,
             "password" : "********"
           }
         }
       }
    }

  • Sample Output JSON:
    {
      "task":{
        "@href":"/api/space/job-management/jobs/1081379",
        "id":1081379
      }
    }

  • Access Control

    The following capabilities are required to access this API: UploadPublicKey