10 lines
493 B
C#
10 lines
493 B
C#
namespace DocuMed.Infrastructure.RestServices;
|
|
|
|
public interface IKaveNegarRestApi
|
|
{
|
|
|
|
[Post("/{apiKey}/verify/lookup.json")]
|
|
Task<KaveNegarResponse> SendLookUp(string apiKey, [Query] string receptor, [Query] string token, [Query] string token2, [Query] string token10, [Query] string token20, [Query] string template);
|
|
[Post("/{apiKey}/sms/send.json")]
|
|
Task<KaveNegarResponse> SendSms(string apiKey, [Query] string receptor, [Query] string message, [Query] string sender);
|
|
} |