Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Note preliminary state of page/wrangler with recommended redirect

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...


Note

This page is unfinished. For a taste, see the engine module documentation.


Info
titleComments

Create an organization for documentation by being precise with headings and using the ToC macro to see it at the start of the page. I've added it below. Note that it's not very helpful because the structure of the page isn't very precise.

...

On success

keyvalue
channels

[{

"last_active":<number>,

"policy":<null>, //not implemented yet


"name":<string>,


"type":<string>,


"cid"(will be eci soon):<eci as string>,


"attributes":{


"channel_attributes":<string>

},

},..{}n]

 

uses example

Code Block
languagejavascript
themeConfluence
response = v1_wrangler:channel(null,null,null){"channels"}; // all channels
response = v1_wrangler:channel("flipper",null,null){"channels"}; // single "flipper" channel
response = v1_wrangler:channel(null,"type",null){"channels"}; // collection of channels by type
response = v1_wrangler:channel(null,"type","OAUTH"){"channels"}; // collection of channels with "OAUTH" as type 

...

On success

keyvalue
attributes
{
"channel_attributes":<string> // for example "Time_hopping"
}

 

uses example
Code Block
languagejavascript
themeConfluence
response = v1_wrangler:channelAttributes("532569A0-43BB-11E6-AA23-29E4C71C24B1",null){"attributes"}; // attributes by eci
response = v1_wrangler:channelAttributes(null,"Dr.Who"){"attributes"}; // attributes by channel name
 

...

On success

keyvalue
policy
{
"error":[""]
}

 

uses example
Code Block
languagejavascript
themeConfluence
response = v1_wrangler:channelPolicy("532569A0-43BB-11E6-AA23-29E4C71C24B1",null){"policy"}; // policy by eci
response = v1_wrangler:channelPolicy(null,"Dr.Who"){"policy"}; // policy by channel name

...

On success

keyvalue
type
<string> // for example "Time_wizard"

 

uses example
Code Block
languagejavascript
themeConfluence
response = v1_wrangler:channelType("532569A0-43BB-11E6-AA23-29E4C71C24B1",null){"type"}; // type by eci
response = v1_wrangler:channelType(null,"Dr.Who"){"type"}; // type by channel name

...