Skip to content

Commit

Permalink
Fix links to Developers' Portal (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelhalicz committed Aug 29, 2022
1 parent 9149dbb commit 457abcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The webhooks client is a demo web application that handle incoming webhooks notifications and allows to manage
subscriptions. Read more about SmartRecruiters webhooks functionality
[here](https://dev.smartrecruiters.com/customer-api/webhooks).
[here](https://developers.smartrecruiters.com/docs/webhooks).

The application is up and running at <https://sr-webhooks-client.herokuapp.com>. You are welcomed to log in using your
SmartRecruiters administrator account and play around with the functionality to get a sense of how SmartRecruiters
Expand All @@ -22,7 +22,7 @@ entities to the user and enables them to see and change their webhooks subscript
### Subscription management

The app allows to read, activate and delete webhooks subscription via
[webhooks subscriptions API](https://dev.smartrecruiters.com/customer-api/live-docs/webhooks-subscriptions-api).
[webhooks subscriptions API](https://developers.smartrecruiters.com/reference/webhooks-subscriptions-api).


### Subscription activation
Expand Down Expand Up @@ -58,8 +58,8 @@ router.post('/:id', async (req, res) => {
```

Every notification contains information about type of event and its version in the headers. The id of changed resource
is provided in the body. See full documentation of notification
[here](https://dev.smartrecruiters.com/customer-api/live-docs/webhooks-subscriptions-api/#//onJobCreatedCallback).
is provided in the body. See full documentation of notification entities in callbacks section
[here](https://developers.smartrecruiters.com/reference/subscriptionscreate-1).

```
const internalEvent = req => {
Expand Down Expand Up @@ -107,4 +107,4 @@ app.get('/auth/callback',
During OAuth flow webhooks client requests for `webhooks_manage` scope which allows to read, activate and delete
webhooks subscriptions as well as other scopes, such as `jobs_read`, `approvals_read` and `candidates_read` that enable the application
to retrieve current state of the entities from SmartRecruiters API. Read more about OAuth scopes
[here](https://dev.smartrecruiters.com/customer-api/authentication/access-scopes).
[here](https://developers.smartrecruiters.com/docs/authentication-access-scopes).

0 comments on commit 457abcc

Please sign in to comment.