Path Finding Methods
Close a pathfinding request
wss://honeycluster.io
rpc method: path_find_close

Closes a currently open pathfinding request. Only one pathfinding request can be open per WebSocket connection.

Try it now
Response · path_find_close WS Response
{
  "result": {
    "closed": true
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
path_find_close WS Request
application/json
Close a pathfinding request
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "path_find_close",
  "id": 1
}
Response Message
path_find_close WS Response
application/json
WebSocket response for path_find_close
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "closed": true
  },
  "status": "success",
  "type": "response",
  "id": 1
}