attask

Does AtTask event subscription work?

折月煮酒 提交于 2020-01-16 13:49:08
问题 Has anyone had success with AtTask event subscriptions through the API? I have successfully registered a subscription, seen here: { "data": [ { "ID": "52a4c50100008ac5bb38ed45a6191a3f", "objCode": "EVTSUB", "entryDate": "2013-12-08T14:14:09:756-0500", "fields": "[\"*\"]", "filters": "{\"name_Mod\":\"cinotcontains\",\"name\":\"Test\"}", "lastUpdateDate": "2013-12-08T14:14:09:756-0500", "lastUpdatedByID": "5266f6be002bbd546e91a21028180509", "notificationURL": "http://ec2-54-196-33-85.compute-1

Workfront and the popt API

穿精又带淫゛_ 提交于 2020-01-07 04:15:48
问题 Ok, here's my issue. Please forgive me if this has been asked somewhere. I did a search on the site and couldn't find what I'm looking for. I am very, very, very new to Workfront, and their documentation seems rather limited with regard to what I'm looking to do. I know how to get the query from my database and convert it to JSON. I can log into Workfront and create a custom form. I can add a drop down list to it. What I need to do is get the JSON into the drop down list on the page. So I don

how to get the documents associated with projects or issues from atTask api

旧街凉风 提交于 2020-01-06 19:27:06
问题 am new to attask api. Am trying to get the documents associated with the projects or tasks from atTask using api, where exactly i will find the relationship between projects and documents. I mean in which table i will find this relation in Relational Databases provided by atTask API. Thanks in advance. 回答1: To get the Document of a task or poject you would need to supply the Project ID or Task ID reffer to the API document at https://developers.attask.com/api-docs/api-explorer/. An example

AtTask User Creation

戏子无情 提交于 2019-12-23 02:04:36
问题 Does anyone have a example of creating a AtTask user using Invoke-RestMethod? Have tried the following Invoke-WebRequest "https://company.attask-ondemand.com/attask/api/user?emailAddr=user@domain.com&firstName=user&lastName=name&password=Pa$$w0rd&sessionID=jjsaduu298901283123j" -Method post which returns bad request... Thanks in advance! 回答1: Place the new user information in a json array in a field named updates. Specify the method you are doing. in this case: &method=post. Then you need to

Attask - Update hidden project properties through API

…衆ロ難τιáo~ 提交于 2019-12-13 07:04:34
问题 I have a number of project fields to be updated via API, which are not visible in workfront UI. I fetch these properties by doing a GET of the project ID. Few fields to name that I need to update are - previousStatus, categoryID, resourcePoolID, scheduleID, eac and others. Please note my extRefID is null. I have tried this - https://abc.attasksandbox.com/attask/api/project/57--b8477f7?DE:project={previousStatus:EST}&apiKey=759--ux&method=put and this https://xyz.attasksandbox.com/attask/api

AtTask Modifiers

余生长醉 提交于 2019-12-13 04:36:23
问题 I have a few questions on the use of AtTask modifiers. I've been creating an application to pull and push data using the API, and it's been going really well so far -- the documentation is very good and the consistency of the service has been outstanding. I have come up against a few things I wanted to ask about -- it may be that some of these were intentional design choices or limitations, but if not, getting them fixed would lead to drastically fewer API calls (which is a win on both sides)

ATTask API - Updating Custom Field with API and C Sharp

僤鯓⒐⒋嵵緔 提交于 2019-12-13 02:32:53
问题 I have the API functioning fine within my project for non custom fields, but the documentation doesn't really seem to work in relation to explaining what the actual put request format should be for updating a custom field using c sharp. I have the following: Custom Field of type PROJECT called "TestNumber". I can easily search it with the web request: /attask/api/proj/search?sessionID=XXXXXXX&ID=XXXXX&fields=DE:TestNumber so I know that the syntax for that specific custom field is right. I

Why is this foreach loop stopping early?

烈酒焚心 提交于 2019-12-12 00:35:17
问题 I am trying to pull project information from the AtTask/WorkFront site. The foreach loop that I am using stops looping at 100 projects every time. JToken projects = client.Search(ObjCode.PROJECT, new { groupID = userGroupID }); foreach (var j in projects["data"].Children()) { Console.WriteLine("# " + counter + " Name: {0}", j.Value<string>("name")); counter++; } This produces names just as I need it to, except that the loop always stops short. The code for this loop came directly from the

GET multiple values in a search request

安稳与你 提交于 2019-12-11 22:33:57
问题 I am using the AtTask API to do some custom reporting and I would like to get back more than one of a particular parameter. For example, in the documentation it states: GET /attask/api/project/search?status=CUR Is there a way to also get back APP, PLN, etc? i.e. I'd like to do one call and get back all projects with a particular set of statuses. I've tried: status={CUR,APP,PLN} status=CUR,APP,PLN status=CUR&status=APP&status=PLN So far none of those have returned the dataset. Thank you! 回答1:

How do I Set the Planned Completion Date on a Task?

a 夏天 提交于 2019-12-10 21:46:53
问题 I'm trying to figure out how to set the planned completion date when creating or updating a task. Tasks always result with a plannedCompletionDate equal to the day the project was created. I have used a few different dateTime formats, but it never changes. These are the two I've used that didn't throw an error: 2015-05-02T08:00:00:000-0500 2015-05-02 However, even though there was no error, there was no change either. I saw in another post that a user was using $$TODAY-25d in a search query,