Hi,
is there a way to know if a record has been created from the mobile app or from the web?
If not, do you think we can achieve this by adding a custom field with a logic that writes app or web depending on the entry point?
Thanks
Omar
Hi,
is there a way to know if a record has been created from the mobile app or from the web?
If not, do you think we can achieve this by adding a custom field with a logic that writes app or web depending on the entry point?
Thanks
Omar
Hi Omar!
All read/write requests that are made from mobile side can be identified by platform=mobile query param.
For example, POST for Account creation: ...rest/v11_26/Accounts?erased_fields=1&viewed=1&platform=mobile.
This param can be parsed on PHP side accordingly if needed
Hope this helps, Eugene
Hi Omar!
All read/write requests that are made from mobile side can be identified by platform=mobile query param.
For example, POST for Account creation: ...rest/v11_26/Accounts?erased_fields=1&viewed=1&platform=mobile.
This param can be parsed on PHP side accordingly if needed
Hope this helps, Eugene
Thanks.
Can I find those parameters also using Sell?