Last updated 11 days ago
Was this helpful?
curl -L \ --url '/connections/schema'
{}
curl -L \ --url '/connections'
[ { "id": "text", "currentState": "connecting", "targetState": "connected", "connection": {}, "agentName": "text" } ]
curl -L \ --url '/connections/{id}'
{ "id": "text", "currentState": "connecting", "targetState": "connected", "connection": {}, "agentName": "text" }
connect
disconnect
curl -L \ --request PUT \ --url '/connections/{id}/operation' \ --header 'Content-Type: application/json' \ --data '{ "operation": "connect" }'
curl -L \ --url '/endpoints/schema'
curl -L \ --url '/endpoints'
[ { "id": "text", "currentState": "enabling", "targetState": "enabled", "connectionId": "text", "operation": "text", "address": {}, "agentName": "text" } ]
curl -L \ --url '/endpoints/{id}'
{ "id": "text", "currentState": "enabling", "targetState": "enabled", "connectionId": "text", "operation": "text", "address": {}, "agentName": "text" }
curl -L \ --url '/endpoints/{id}/topics'
[ "text" ]
curl -L \ --url '/endpoints/{id}/state'
text
enable
disable
curl -L \ --request PUT \ --url '/endpoints/{id}/operation' \ --header 'Content-Type: application/json' \ --data '{ "operation": "enable" }'
curl -L \ --url '/mappings/schema'
curl -L \ --url '/mappings'
[ { "id": "text", "currentState": "enabling", "targetState": "enabled", "mappings": [ {} ], "agentName": "text" } ]
curl -L \ --url '/mappings/{id}'
{ "id": "text", "currentState": "enabling", "targetState": "enabled", "mappings": [ {} ], "agentName": "text" }
curl -L \ --request PUT \ --url '/mappings/{id}/operation' \ --header 'Content-Type: application/json' \ --data '{ "operation": "enable" }'
curl -L \ --url '/mappings/{id}/endpoint-topics'
{ "ANY_ADDITIONAL_PROPERTY": [ "text" ] }
curl -L \ --url '/mappings/{id}/state'
curl -L \ --url '/servers/schema'
curl -L \ --url '/servers'
[ { "id": "text", "options": {}, "currentState": "enabling", "targetState": "enabled", "protocol": "Opcua", "agentName": "text" } ]
curl -L \ --url '/servers/{id}'
{ "id": "text", "options": {}, "currentState": "enabling", "targetState": "enabled", "protocol": "Opcua", "agentName": "text" }
curl -L \ --request PUT \ --url '/servers/{id}/operation' \ --header 'Content-Type: application/json' \ --data '{ "operation": "enable" }'
curl -L \ --url '/servers/{id}/state'
curl -L \ --url '/nodes'
[ { "id": "text", "currentState": "enabling", "targetState": "enabled", "nodes": [ {} ], "agentName": "text" } ]
curl -L \ --url '/nodes/{id}/state'
curl -L \ --url '/topics'
{ "endpoints": [ {} ], "mappings": [ {} ], "nodes": [ {} ] }
The body being inputted for transformation
The transformation expression
curl -L \ --request POST \ --url '/rule-engine/transform' \ --header 'Content-Type: application/json' \ --data '{ "input": null, "transformation": "text" }'