Seeking documentation for two workfront api's jrnle/search and auds/search | Community
Skip to main content
Ken_Qrious
Level 4
February 25, 2025
Solved

Seeking documentation for two workfront api's jrnle/search and auds/search

  • February 25, 2025
  • 1 reply
  • 440 views

I am trying to get a list of valid search keys for the following two workfront api's, preferably with examples.  For example jrnle/search?project:ID=

 

https://<workfrontinstance>/attask/api/v7.0/jrnle/search?
https://<workfrontinstance>/attask/api/v7.0/auds/search?

Best answer by lgaertner

Hello Ken,

 

For the JRNLE endpoint:

https://<workfrontinstance>/attask/api/v19.0/JRNLE/search?fields=*&projectID=<projectID>

 

 

For the AUDS endpoint:

https://<workfrontinstance>/attask/api-internal/AUDS/search?fields=%2A&startDate=2025-01-01T00%3A00%3A00%3A000%2B0200&startDate_Mod=gte

 

In general you should always use the API-Explorer to see, which fields you can query.


Regards

Lars

1 reply

lgaertner
lgaertnerAccepted solution
Level 9
February 25, 2025

Hello Ken,

 

For the JRNLE endpoint:

https://<workfrontinstance>/attask/api/v19.0/JRNLE/search?fields=*&projectID=<projectID>

 

 

For the AUDS endpoint:

https://<workfrontinstance>/attask/api-internal/AUDS/search?fields=%2A&startDate=2025-01-01T00%3A00%3A00%3A000%2B0200&startDate_Mod=gte

 

In general you should always use the API-Explorer to see, which fields you can query.


Regards

Lars

Ken_Qrious
Level 4
February 25, 2025

Thanks, I had found the API-Explorer page but there wasn't a working example to look at and it was difficult to determine the formatting.  The JRNLE example worked without any issue but it took a bit of trial and error to get the AUDS example working.  After changing the hex values to regular characters I got an invalid start date error.  Once I removed the ++0200 at the end of the date it was fine.