/api/space/fabric-management/delete-fabric-node

The following operation is supported on this resource:

  • POST - Delete a node from the fabric
POST /delete-fabric-node Version 2

Delete a node from the fabric.

Sample Usage

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

POST /delete-fabric-node?queue=<queue>&schedule=<schedule>


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


  • Parameters:
    Name Type URI Type Description Required
    queue Queue URL Query A fully qualified queue URL, where job progress notifications will be sent (See Asynchronous API Usage) N
    schedule cron-like-expression Query Schedule this API in the future, by specifying a cron-like-expression (See Job Scheduling) N
  • Sample Input XML:
    <delete-fabric-node-request>
         <fabric-node href="/api/space/fabric-management/fabric-nodes/163843"/>
         <alternative-fabric-node href="/api/space/fabric-management/fabric-nodes/163850"/>
    </delete-fabric-node-request>

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

  • Sample Input JSON:
    {
       "delete-fabric-node-request" : {
         "fabric-node" : {
           "@href" : "/api/space/fabric-management/fabric-nodes/163843"
         } ,
         "alternative-fabric-node" : {
           "@href" : "/api/space/fabric-management/fabric-nodes/163850"
         }
       }
    }

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

  • Access Control

    The following capabilities are required to access this API: DeleteNode