You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you need to use requests, that are not yet implemented, you can use the ```WebApiClient.SendRequest``` function.
169
+
In combination with ```WebApiClient.GetApiUrl``` and ```WebApiClient.GetSetName``` you can easily build up your request url, set your HTTP method and attach additional payload or headers.
170
+
171
+
An example of a custom implementation of the WinOpportunity request:
172
+
```Javascript
173
+
var url =WebApiClient.GetApiUrl() +"WinOpportunity";
174
+
var opportunityId ="00000000-0000-0000-0000-000000000001";
0 commit comments