コード例 #1
0
 private static Request BuildCreateRequest(CreateRoleOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Conversations,
                "/v1/Roles",
                postParams: options.GetParams(),
                headerParams: null
                ));
 }