Beispiel #1
0
 private async Task <SendApiResponse> SendAsync(JObject json, string endPoint = null)
 {
     endPoint = endPoint ?? _SendMessageEndpoint;
     return(await RequestHandler.PostAsync <SendApiResponse>(json, $"{endPoint}"));
 }