listgroups_extended
From SmartBots Developers Docs
Revision as of 19:47, 7 March 2018 by Gg (Talk | contribs) (Created page with "{{DISPLAYTITLE: listgroups_extended}} <onlyinclude>Returns the bot's groups list, with additional details.</onlyinclude> <syntaxhighlight lang="lsl"> // See "LSL Helper Funct...")
Returns the bot's groups list, with additional details.
// See "LSL Helper Functions" page for this function
smartbotsAPI("groups_extended", []);
Variables
The following table shows input values (you send them with the API call) and returned output values.
Variable | Required | Description | ||
---|---|---|---|---|
Input basic parameters: | ||||
action | yes | = listgroups | ||
apikey | yes | Your personal developer's API key. | ||
botname | yes | Your bot's SL login. | ||
secret | yes | Bot access code of your bot. | ||
dataType | optional | Set to "json" to get JSON reply instead of URL-encoded string | ||
custom | optional | The custom data (string) to be passed back to caller script. This value will be returned back to the caller in HTTP response. | ||
Output: | ||||
(to be received in http_response LSL event, see docs for details) | ||||
result | OK - command completed successfully FAIL - command failed | |||
resulttext | Detailed reason for the failure. | |||
custom | The value from input "custom" parameter. See above. | |||
groups | The JSON-array of bot's group (see below) |
Details
The API command returns the bot's groups with additional details. Each groups array entry is an object containing:
- name - the name of the group
- uuid - the group UUID
- open - 1 if group is open to join, 0 otherwise
- fee - the group joining price (0 when free)
- permissions - the comma-separated list of bot's permissions
Return format
This command returns complex data and available only when requesting JSON output (dataType=json)
Example
The example of the groups list returned:
{ "action": "listgroups_extended", "result": "OK", "groups": [ { "name": "HMG SYSTEM", "uuid": "051b19c0-2deb-a716-8894-1cf5701bf6e6", "open": 0, "fee": "0", "permissions": "JoinChat,AllowVoiceChat,AllowSetHome,Accountable,ReceiveNotices" }, { "name": "Earn2Life - earn L$500-1000 a day", "uuid": "41ff4c6b-e3c0-a2b9-f53b-797e78532374", "fee": "0", "open": 0, "permissions": "Invite,Eject,AssignMemberLimited,RemoveMember,JoinChat,AllowFly,AllowLandmark,AllowVoiceChat,AllowSetHome,LandManageAllowed,LandManageBanned,LandEjectAndFreeze,ModerateChat,SendNotices,ReceiveNotices,StartProposal,VoteOnProposal,MemberVisible" }, { "name": ".oO [KB] Kitty Boom Oo.", "uuid": "5611bcb8-8a0f-be6e-2e17-b3c6ec629716", "open": 0, "fee": "0", "permissions": "JoinChat,AllowVoiceChat,AllowSetHome,Accountable,ReceiveNotices" } ] }
<< return back to Bot commands
(Miss an API call or parameter? Submit your request in forum)