function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Swapnajit BanerjeeSwapnajit Banerjee 

Get Follow-ups tasks of an account

Hi,
I've just started off wirh Salesforce development for my company. We want to integrate Salesforce with our existing android app and fetch the follow-up tasks of an user. I'm trying to do the same with the RestRequest class provided in the Salesforce Android SDK, and sending my request for the same as an SOQL statement. Now, I need help with following two things -
​1) Is it possible at all to obtain the follow-up tasks of user through SOQL?
2) If yes, can someone please provide me the exact SOQL statement for the same?

I know my problems are rather elementary, but I couldn't find any exact documentation for  what I am trying to achieve through the Salesforce API. So, any help with this will be highly appreciated!

Thank you for your time!
Abhijit Shrikhande 10Abhijit Shrikhande 10
Here is the query to fetch a list of tasks.
Select Id, IsHighPriority, Priority, Status, ActivityDate, Subject, IsClosed, Description, Owner.Username, Owner.LastName from Task