Making web API call, Method not found

If you have a C# project, your Body request should look like this:

@"{
" + "\n" +
@"""endToEndId"":""12345"",
" + "\n" +
@"""businessOrFirstName"":""Health"",
" + "\n" +
@"""consumerAcctNum"":""02123456"",
" + "\n" +
@"""consumerRoutingNum"":""135667""
" + "\n" +
@"}";

Body Format: application/json


If you have a VB project, your Body request should look like this:

"{""endToEndId"": ""12345"",""businessOrFirstName"": ""Health"",""consumerAcctNum"": ""02123456",""consumerRoutingNum"": ""135667""}"

Body Format: application/json

Let us know if this helped you.