1. Home
  2. Docs
  3. V1
  4. NuGet Package
  5. GetResponses

GetResponses

To retrieve all user records associated with your account

ResponseList list = await client.GetResponses();
//Returns a List<SecureStoreUser>


foreach(SecureStoreUser user in list.users)
{
}

The SecureStoreUser object:

SecureStoreUser
      {
        string remoteID 
        string stripeID
        string businessName
        bool accountSet 
        bool routingSet
        bool stripeSynced
        bool melioSynced 
      }

You can limit the ResponseList to only records that haven’t been synced with either Stripe or Melio

ResponseList list = await client.GetResponses(stripeNotSynced:true);

o

ResponseList list = await client.GetResponses(meliosNotSynced:true);
Was this article helpful to you? Yes No

How can we help?