Am i able to get the description and status of a project in Asana usin an api key? - asana

I've retrieved all the projects from a certain workspace and the tasks associated with them using an Api key in C#, but now I'm wondering how would I go about getting the descriptions and statuses of these projects?

The description is in the "notes" field of the project - we don't currently expose the status, but we're hoping to in future.

Related

REST API for JIRA 7.3.5

JIRA version 7.3.5 does not supports SOAP APIs, hence I want to migrate my code from SOAP to REST APIs.
PROBLEM STATEMENT:
For a given JIRA ID, i want the API which can return me the JIRA details:
For Example:
If I query for "Issue Type", the API should return one of the following types:
Issue Type:
New Feature
Support
Bug
Change Request
Story
Epic
Summary Task
Task
Documentation
Similarly, i want to get the result for other details such as "Status", "Priority", "Resolution", "Labels", "Severity" etc. etc.
I'm new to REST APIs and hence unable to locate the exact documentation for same.
I referred to following documentation but it didn't help much:
https://docs.atlassian.com/software/jira/docs/api/REST/7.3.5/
If you use the endpoint GET /rest/api/2/issue/{issueIdOrKey} you get back a representation of the issue. In that there is fields.issueType which contains name (probably what you need) but also a more thorough description, id and link to the definition, icon etc.

Create custom work items

I need to create a custom work item type from a build task, Is this possible with current VSTS Rest API?
I have reffered the Work items Referance, It doesn't contain info on this.
Based on the REST API document and this blog about timeline, REST API for customization is not supported now.

Is it possible to query or modify project membership/guests with the Asana API?

I'd like to be able to add a user as a guest to a project specific to that individual, but it looks like I cannot do this programmatically and must instead resort to manually adding them as a guest. Is there anything I'm missing in the API documentation? Is there an undocumented feature that would let me do so? Or am I just out of luck?
It is currently not possible to manage users of an organization via the API.
This is on our API roadmap, which I hope to publish a public version of soon.
You can subscribe to incremental changes of our API and it's documentation on API changelog https://www.apichangelog.com/api/asana

Build custom query to retrieve tasks using asana api

I am using asana api to retrieve tasks to build a dashboard. For that I need to build custom query like retrieving tasks within a date range or due_on 'some date' etc.
Is there anyway to achieve this using asana api? or any other alternative?
If not when can we expect this feature added to asana api?
Thanks in advance,
We plan to offer a Search API (which would let you query tasks in a similar way to the search tool in-product, though it may actually expose a few more tricks), but there's no ETA on that just yet.

How do I get all financial records related to a job using IPP v2

My company wants to integrate our app with Quickbooks using IPP v2 API. We would like to retrieve all financial records related to a job. I have been playing around with the API using the API explorer. I see that I have to retrieve the data separately using entities like Bill, Invoice, Journal, etc. However, I didn't seem to find a way to filter the data returned in those entities by job.
Currently, I have to query the entire Bill table for example and to look for JobId under ReimbursableInfo myself. It's not feasible since I have to do the same thing for other tables.
Am I missing something from here?
In docs, JobID is not mentioned as a filterable attribute.
Ref - https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v2/0500_quickbooks_windows/0600_object_reference/bill#Retrieving_Bills_Using_a_Query_Filter
You need to do client side filtering.
For Invoice, you can use JobIdSet attribute.
Ref - https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v2/0500_quickbooks_windows/0600_object_reference/invoice
Thanks

Resources