Unplug a Resource
This content applies solely to Appian RPA, which must be purchased separately from the Appian base platform.

Remember to include the appropriate authentication headers in your HTTP request message when using this method.

Unplug a resource

POST: /rpa/rest/oo/node/disconnected

This method unplugs a single resource. When the resource is unplugged, the agent is still running but will no longer receive robotic process instructions.

Request body

Parameter Example Required? Description
nodeId 5da9a68106931e0e1d1246b6 Yes Unique ID of the resource

Example request body:

1
2
3
{
    "nodeId" : "5da9a68106931e0e1d1246b6"
}

Response

The call is successful if "invocationResult" = "OK".

This endpoint doesn't return any other data.

Example response body:

1
2
3
{
    "invocationResult": "OK",
}

Troubleshooting

Possible reasons calls may be unsuccessful ("invocationResult" = "KO"):

  • The resource ID is null or invalid.
  • The requester doesn't have access to the resource.
Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK