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