private static Request BuildCreateRequest(CreateUserOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.IpMessaging,
                "/v2/Services/" + options.PathServiceSid + "/Users",
                postParams: options.GetParams()
                ));
 }