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
asyncfunctiongetSendersByExternalId(apiClient){// Find more details on external IDs at https://docs.transferzero.com/docs/transaction-flow/#external-idconstapi=newTransferZeroSdk.SendersApi(apiClient,{});opts={externalId: 'EXTSEN-5555'};try{constresponse=awaitapi.getSenders(opts);response.object.forEach(sender=>console.log(sender));console.log(response.meta);}catch(e){console.error(e.error.stack);}}
There is always a list of objects returned that have nothing to do with the externalId provided.
Is this function meant to only return Senders with the provided externalId?
Or is it supposed to send a random list of Senders regardless of what externalId is provided?
The text was updated successfully, but these errors were encountered:
I am using the example function in the docs:
There is always a list of objects returned that have nothing to do with the externalId provided.
Is this function meant to only return Senders with the provided externalId?
Or is it supposed to send a random list of Senders regardless of what externalId is provided?
The text was updated successfully, but these errors were encountered: