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
Bhargav vaishnav 2Bhargav vaishnav 2 

Android application to Salesforce record create.

Hello,

I have an Android application on my phone (Native app.) I created it by using MobileSDK. My requirement is once someone comes to sing up in application so all details should be saved in SFDC object.

Maybe this can be done by REST API but How we can go?

Help me,

Thanks in advance

-Bvaishnav
SwethaSwetha (Salesforce Developers) 
HI Bhargav,

The Salesforce API provides services for accessing Salesforce objects through REST endpoints. Mobile SDK supports these services by providing REST classes that

1. Implement factory methods that create REST request objects for you.
2. Send authenticated requests, based on your configuration, to Salesforce.
3. Intercept the server’s response and return it to your app as a Swift or Objective-C object.

Note: Responses to REST requests arrive in your app asynchronously. To handle these responses, you can choose between a callback delegate that you specify when you send the request, or inline callback blocks. 

See these articles for more information

https://developer.salesforce.com/docs/atlas.en-us.mobile_sdk.meta/mobile_sdk/ios_native_rest_apis.htm

https://developer.salesforce.com/docs/atlas.en-us.noversion.mobile_sdk.meta/mobile_sdk/ios_rest_apis_supported.htm

Hope this helps you. Please mark this answer as best so that others facing the same issue will find this information useful.

Thank you
Bhargav vaishnav 2Bhargav vaishnav 2
Thanks, Swetha

I cleared with your step but If I have a marketing cloud where can I implement those things ??

Thanks for helping,

-Bvaishnav