Module: Slack::Endpoint::Team
- Included in:
- Slack::Endpoint
- Defined in:
- lib/slack/endpoint/team.rb
Instance Method Summary collapse
-
#team_accessLogs(options = {}) ⇒ Object
Gets the access logs for the current team.
-
#team_billableInfo(options = {}) ⇒ Object
Gets billable users information for the current team.
-
#team_info(options = {}) ⇒ Object
Gets information about the current team.
-
#team_integrationLogs(options = {}) ⇒ Object
Gets the integration logs for the current team.
-
#team_profile_get(options = {}) ⇒ Object
Retrieve a team’s profile.
Instance Method Details
#team_accessLogs(options = {}) ⇒ Object
Gets the access logs for the current team.
18 19 20 |
# File 'lib/slack/endpoint/team.rb', line 18 def team_accessLogs(={}) post("team.accessLogs", ) end |
#team_billableInfo(options = {}) ⇒ Object
Gets billable users information for the current team.
30 31 32 |
# File 'lib/slack/endpoint/team.rb', line 30 def team_billableInfo(={}) post("team.billableInfo", ) end |
#team_info(options = {}) ⇒ Object
Gets information about the current team.
40 41 42 |
# File 'lib/slack/endpoint/team.rb', line 40 def team_info(={}) post("team.info", ) end |
#team_integrationLogs(options = {}) ⇒ Object
Gets the integration logs for the current team.
62 63 64 |
# File 'lib/slack/endpoint/team.rb', line 62 def team_integrationLogs(={}) post("team.integrationLogs", ) end |
#team_profile_get(options = {}) ⇒ Object
Retrieve a team’s profile.
74 75 76 |
# File 'lib/slack/endpoint/team.rb', line 74 def team_profile_get(={}) post("team.profile.get", ) end |