Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Creates a new pico and returns it's representation. i.e. `{id: "some-id"}`

removePico

newChannel

Creates a new channel for a pico (identified to the engine by the pico_id parameter).

ParameterDatatypeRequired
<pico_id><string>YES
<channel_name><string>YES
<channel_type><string>YES




removeChannel

registerRuleset

...

Installs rulesets into a pico.  


ParameterDatatypeRequired
<pico_id><string>
YES
<rid>string | array

YES


Code Block
titleintall ruleset
response = engine:installRuleset( { "pico_id": ent:id, "rid": "wrangler" } );
response = engine:installRuleset( { "pico_id": ent:id, "rid": ["wrangler","Pds"] } );
response = engine:installRuleset( { "pico_id": ent:id, "base": <base>, "url": <url> } );

...