Skip to content

Commit

Permalink
wip mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wang committed May 19, 2015
1 parent 16703ac commit 5012913
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
File renamed without changes.
23 changes: 23 additions & 0 deletions docs/usage/Messages-Fax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Fax Messages

## Faxing a Text Message

## Faxing a PDF or TIFF

### Faxing a PDF or TIFF

### Faxing a PDF or TIFF Using Base64 Encoding

```ruby
fax = RingCentralSdk::Helpers::CreateFaxRequest.new(
{ :account_id => '~', :extension_id => '~' }, # Can be nil or {} for defaults '~'
{
# phone numbers are in E.164 format with or without leading '+'
:to => [{ :phoneNumber => '+16505551212' }],
:faxResolution => 'High',
:coverPageText => 'RingCentral fax PDF example using Ruby!'
},
:file_name => '/path/to/my_file.pdf'
:base64_encode => true
)
```
1 change: 0 additions & 1 deletion docs/usage/messages.md

This file was deleted.

0 comments on commit 5012913

Please sign in to comment.