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
@HunnySajid , we do not have a method in signify-ts to retrieve an aid by its aid string. What we can do is in the listIdentifiers function in the browser, it to iterate until we gel all aids, something like
const listIdentifiers = async () => {
validateClient();
let aids: any[] = []
let start = 0;
let total = 25;
while (start < total) {
const res = await _client?.identifiers().list(start, start + 24);
aids = aids.concat(res.aids);
total = res.total;
start = res.end + 1;
}
return aids;
};
No description provided.
The text was updated successfully, but these errors were encountered: