aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSteven Blowers <sblowers@findmypast.com>2016-11-01 13:16:04 +0000
committerSteven Blowers <sblowers@findmypast.com>2016-11-01 13:16:04 +0000
commit528754e77d49abc2408bd4431bcf51e7316582c1 (patch)
tree890b5abba3fc9431da4f5d28b668b74c84041eff /README.md
parentdcd0050be5fc05d0460c5cc6508808ba8ab1cc7e (diff)
downloadzendex-528754e77d49abc2408bd4431bcf51e7316582c1.tar.gz
zendex-528754e77d49abc2408bd4431bcf51e7316582c1.tar.xz
updating README with piping example
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 786e2dc..2518bcd 100644
--- a/README.md
+++ b/README.md
@@ -42,6 +42,14 @@ An Elixir wrapper for the Zendesk API.
%{"user": %{"id": 87, "name": "Quim Stroud", ...}}
```
+ 3. Using pipes:
+
+ ```elixir
+ "http://test.zendesk.com"
+ |> Zendex.Connection.setup("Username1", "password123")
+ |> Zendex.User.show(101)
+ ```
+
## Completeness and Contributions
This package far from complete in terms of utilising all of the Zendesk API, any contributions will be welcome. Please keep the code consistent with what I have already written here.