Sha256: f99ae5ad374701c6f5148b6138fcda19f134fda4d38564e354467b414d74fe4a
Contents?: true
Size: 1.56 KB
Versions: 8
Compression:
Stored size: 1.56 KB
Contents
users: get_favorites_for_user: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.users.get_favorites_for_user(user_gid: 'user_gid', resource_type: ''resource_type_example'', workspace: ''workspace_example'', param: "value", param: "value", options: {pretty: true}) get_user: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.users.get_user(user_gid: 'user_gid', param: "value", param: "value", options: {pretty: true}) get_users: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.users.get_users(param: "value", param: "value", options: {pretty: true}) get_users_for_team: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.users.get_users_for_team(team_gid: 'team_gid', param: "value", param: "value", options: {pretty: true}) get_users_for_workspace: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.users.get_users_for_workspace(workspace_gid: 'workspace_gid', param: "value", param: "value", options: {pretty: true})
Version data entries
8 entries across 8 versions & 1 rubygems