You need to sign in to do that
Don't have an account?

How to check in salesforce that myservice has been called from external system
Hi All,
I have developed one small rest api service. External system is calling daily to that service.
My query is how can i check that callout time in salesforce when ever they are calling myservice from external system?
I have developed one small rest api service. External system is calling daily to that service.
My query is how can i check that callout time in salesforce when ever they are calling myservice from external system?
@RestResource(urlMapping='/myservice') global class MyService { @HttpGet global static String doGet() { String name = RestContext.request.params.get('name'); return 'Hello '+name; }