Copy link to clipboard
Copied
How to filtered agreements by specific status (Ex: OUT_FOR_SIGNATURE or SIGNED) in REST API?
Currentlly there is no specific query parameter to use to achive this requirement in GET /agreements.
Copy link to clipboard
Copied
I'm curious about this as well. The fact that there are no filters is very bad for scalability. The list of agreements on an account is just going to grow over time. Which means the API request to get a list of all agreements for the account is going to get slower and slower (as we need to perform more and more requests to get subsequent pages). Maybe old agreements can be deleted to mitigate this, but many users are going to want to keep those old agreements around for reference.
I could see other filters being useful as well, like filtering on the date of the agreement, or on agreement name. Right now the API call to get all agreements is just an all-or-nothing approach, which is bad for users as well as Adobe.
Copy link to clipboard
Copied
I believe you need the /search endpoint?
Please see some examples in the reference collection for Postman here:
Copy link to clipboard
Copied
This is exactly what I was looking for. Thank you!