Skip to content

Commit 965bc0c

Browse files
authored
Merge pull request #14 from sammachin/patch-1
Update README.md
2 parents f2d8543 + 12bd0b8 commit 965bc0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @jambonz/node-client
22

3-
A Node.js SDK for the open source [jambonz](docs.jambonz.org) CPaaS platform. Node.js applications can use this library to respond to [jambonz webhooks](https://docs.jambonz.org/jambonz/) and to make [REST API calls](https://docs.jambonz.org/rest/) to a jambonz platform.
3+
A Node.js SDK for the open source [jambonz](jambonz.org) CPaaS platform. Node.js applications can use this library to respond to [jambonz webhooks](https://www.jambonz.org/docs/webhooks/overview/) and to make [REST API calls](https://api.jambonz.org/) to a jambonz platform.
44

55
> Note: One suggested way to get up and running with this Node SDK is to use the `npx create-jambonz-app` command, which will scaffold out a jambonz application for you using this SDK.
66
@@ -31,7 +31,7 @@ app.listen(port, () => {
3131
logger.info(`listening at http://localhost:${port}`);
3232
});
3333
```
34-
[See here](https://docs.jambonz.org/jambonz/) for information on the available verbs you can use in a jambonz application, and for their associated properties.
34+
[See here](https://www.jambonz.org/docs/webhooks/overview/) for information on the available verbs you can use in a jambonz application, and for their associated properties.
3535

3636
#### Verifying webhook signature
3737
If your jambonz server includes a Jambonz-Signature header on webhook requests, you can verify that the request was signed by jambonz using your webhook secret as follows:
@@ -82,7 +82,7 @@ const sid = await client.calls.create({
8282
call_status_hook: 'http://myurl.com/call-status'
8383
});
8484
```
85-
[See here](https://docs.jambonz.org/rest/#create-a-call) for further details.
85+
[See here](https://api.jambonz.org/#243a2edd-7999-41db-bd0d-08082bbab401) for further details.
8686

8787
##### Updating a call
8888
To update a call in progress -- for example to mute/unmute, hangup the call etc -- you need to know the call sid. Typically you would get this from a webhook sent from an existing call event.
@@ -97,7 +97,7 @@ To update a call in progress -- for example to mute/unmute, hangup the call etc
9797
}
9898
});
9999
```
100-
[See here](https://docs.jambonz.org/rest/#updating-a-call) for further details.
100+
[See here](https://api.jambonz.org/#9c80ca99-4036-4a47-8823-4609e3fd4788) for further details.
101101

102102
### Example
103103

0 commit comments

Comments
 (0)