Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

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

Avatar

Level 4

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?

1 Accepted Solution

Avatar

Correct answer by
Level 10

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

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

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

Avatar

Level 4

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.