Sha256: a33002425cc6d2710441933e4629ba5c3f60319509646df42f3c4c2b3cb93fc7
Contents?: true
Size: 1.45 KB
Versions: 8
Compression:
Stored size: 1.45 KB
Contents
stories: create_story_for_task: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.stories.create_story_for_task(task_gid: 'task_gid', field: "value", field: "value", options: {pretty: true}) delete_story: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.stories.delete_story(story_gid: 'story_gid', options: {pretty: true}) get_stories_for_task: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.stories.get_stories_for_task(task_gid: 'task_gid', param: "value", param: "value", options: {pretty: true}) get_story: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.stories.get_story(story_gid: 'story_gid', param: "value", param: "value", options: {pretty: true}) update_story: >- require 'asana' client = Asana::Client.new do |c| c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN' end result = client.stories.update_story(story_gid: 'story_gid', field: "value", field: "value", options: {pretty: true})
Version data entries
8 entries across 8 versions & 1 rubygems