Hello!
Is there a REST API endpoint that shows the number of transactions that require the user's signature?
Also, is it possible to filter the list by date?
March 4Created
March 4Last Updated
3 years agoLast Reply
1Replies
36Views
2Users
0Likes
0Links
Duo_Liang | Posts: 3777
Reply to: how to get transactions that require my signature
Friday, March 4, 2022 at 03:18pm
0
votes
Hi Monti,
As per the API Swagger, for the retrieve list of packages API, if you set the "predefined" parameter as "awaitingSignature", it should only return packages that requires your signature:
GET /api/packages?type=PACKAGE&query=inbox&predefined=awaitingSignature&lastUpdatedStartDate=2022-01-01&lastUpdatedEndDate=2022-03-04
(1)In response, "count" indicates the number of transactions
(2)"lastUpdatedStartDate" and "lastUpdatedEndDate" allows you to filter by date
(3)If you need to paginate through the list, you will need the parameters "&from=1&to=100", "&from=101&to=200", so on so forth.
Reply to: how to get transactions that require my signature
Friday, March 4, 2022 at 03:18pmHi Monti,
As per the API Swagger, for the retrieve list of packages API, if you set the "predefined" parameter as "awaitingSignature", it should only return packages that requires your signature:
GET /api/packages?type=PACKAGE&query=inbox&predefined=awaitingSignature&lastUpdatedStartDate=2022-01-01&lastUpdatedEndDate=2022-03-04
(1)In response, "count" indicates the number of transactions
(2)"lastUpdatedStartDate" and "lastUpdatedEndDate" allows you to filter by date
(3)If you need to paginate through the list, you will need the parameters "&from=1&to=100", "&from=101&to=200", so on so forth.
Duo