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

Apex Rest - consuming XML document
I want to consume a xml document via @httpost for a rest webservice, will the following decleration work ? does the arugment name needs to match xml namespace etc ?
@HttpPost
global static void docConnectParser(String post){
System.debug('Connect Response =>' +post);
}
Thanks
Ram