TelAPI.TelAPIRestClient.GetNotification C# (CSharp) Method

GetNotification() public method

public GetNotification ( string notificationSid ) : Notification
notificationSid string
return Notification
        public Notification GetNotification(string notificationSid)
        {
            Require.Argument("NotificationsSid", notificationSid);

            var request = new RestRequest();
            request.Resource = RequestUri.NotificationUri;
            request.AddUrlSegment(RequestUriParams.NotificationSid, notificationSid);

            return Execute<Notification>(request);
        }

Same methods

TelAPIRestClient::GetNotification ( string notificationSid ) : Task