Variable transactionApiConst
transactionApi: {
"/v1/transaction": {
get: {
querystring: TObject<
{
amountOperator: TOptional<
TUnion<[TLiteral<"EQ">, TLiteral<"LTE">, TLiteral<"GTE">]>,
>;
amountValue: TOptional<TString>;
createdAfter: TOptional<TString>;
createdBefore: TOptional<TString>;
entityIds: TOptional<TString>;
methods: TOptional<TString>;
orderBy: TOptional<TString>;
page: TOptional<TInteger>;
pageSize: TOptional<TInteger>;
statuses: TOptional<TString>;
types: TOptional<TString>;
updatedAfter: TOptional<TString>;
updatedBefore: TOptional<TString>;
walletAddresses: TOptional<TString>;
},
>;
response: {
"200": TObject<
{
hasNext: TBoolean;
items: TArray<
TObject<
{
amount: TString;
createdAt: TString;
currency: TString;
entityId: TString;
id: TString;
method: TUnsafe<
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...),
>;
postBalance: TOptional<TString>;
preBalance: TOptional<TString>;
signature: TUnion<[(...), (...)]>;
status: TUnsafe<(...) | (...) | (...) | (...)>;
subType: TOptional<TUnsafe<(...)>>;
type: TUnsafe<(...) | (...)>;
updatedAt: TString;
walletAddress: TString;
},
>,
>;
},
>;
"400": TObject<{ error: TString }>;
};
summary: "Search transactions";
tags: readonly ["Transaction"];
};
};
} = ...
Type Declaration
Readonly/v1/transaction: {
get: {
querystring: TObject<
{
amountOperator: TOptional<
TUnion<[TLiteral<"EQ">, TLiteral<"LTE">, TLiteral<"GTE">]>,
>;
amountValue: TOptional<TString>;
createdAfter: TOptional<TString>;
createdBefore: TOptional<TString>;
entityIds: TOptional<TString>;
methods: TOptional<TString>;
orderBy: TOptional<TString>;
page: TOptional<TInteger>;
pageSize: TOptional<TInteger>;
statuses: TOptional<TString>;
types: TOptional<TString>;
updatedAfter: TOptional<TString>;
updatedBefore: TOptional<TString>;
walletAddresses: TOptional<TString>;
},
>;
response: {
"200": TObject<
{
hasNext: TBoolean;
items: TArray<
TObject<
{
amount: TString;
createdAt: TString;
currency: TString;
entityId: TString;
id: TString;
method: TUnsafe<
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...)
| (...),
>;
postBalance: TOptional<TString>;
preBalance: TOptional<TString>;
signature: TUnion<[(...), (...)]>;
status: TUnsafe<(...) | (...) | (...) | (...)>;
subType: TOptional<TUnsafe<(...)>>;
type: TUnsafe<(...) | (...)>;
updatedAt: TString;
walletAddress: TString;
},
>,
>;
},
>;
"400": TObject<{ error: TString }>;
};
summary: "Search transactions";
tags: readonly ["Transaction"];
};
}