private static Request BuildDeleteRequest(DeleteCredentialOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Delete,
                Rest.Domain.IpMessaging,
                "/v1/Credentials/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }