You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List of outstanding airdrops in the PENDING state. The primary use case is for the sender of the airdrop. All information returned to the requester will be queried from the token_airdrop table and should be performant based on the token_airdrop__sender_id index.
Input validation will be applied to the senderIdOrEvmAddress path parameter and the optional query parameters. An error code response of 400 will be returned if any parameters fail validation.
limit - The maximum number of airdrops to return in the response. Defaults to 25 with a max of 100.
order - The direction to sort the items in the response. Sorted by the token_airdrop__sender_id index. Can be asc or desc with a default of asc.
receiver.id - The receiver account the outstanding airdrop was intended for. Supports eq, gt, gte, lt, and lte operators. Only one occurrence is allowed.
serialnumber - The specific serial number associated with airdrop. Supports eq, gt, gte, lt, and lte operators. Only one occurrence is allowed.
token.id - The token ID this airdrop is associated with. Supports eq, gt, gte, lt, and lte operators. Only one occurrence is allowed.
Alternatives
No response
The text was updated successfully, but these errors were encountered:
Problem
Add the outstanding airdrops endpoint to Rest-Java.
Solution
List outstanding airdrops:
/api/v1/accounts/{senderIdOrEvmAddress}/airdrops/outstanding
List of outstanding airdrops in the
PENDING
state. The primary use case is for the sender of the airdrop. All information returned to the requester will be queried from thetoken_airdrop
table and should be performant based on thetoken_airdrop__sender_id
index.Input validation will be applied to the
senderIdOrEvmAddress
path parameter and the optional query parameters. An error code response of400
will be returned if any parameters fail validation.Response:
Optional Filters
limit
- The maximum number of airdrops to return in the response. Defaults to25
with a max of100
.order
- The direction to sort the items in the response. Sorted by thetoken_airdrop__sender_id
index. Can beasc
ordesc
with a default ofasc
.receiver.id
- The receiver account the outstanding airdrop was intended for. Supportseq
,gt
,gte
,lt
, andlte
operators. Only one occurrence is allowed.serialnumber
- The specific serial number associated with airdrop. Supportseq
,gt
,gte
,lt
, andlte
operators. Only one occurrence is allowed.token.id
- The token ID this airdrop is associated with. Supportseq
,gt
,gte
,lt
, andlte
operators. Only one occurrence is allowed.Alternatives
No response
The text was updated successfully, but these errors were encountered: