@@ -9,7 +9,7 @@ Additional APIs:
9
9
10
10
### List webhooks for an organization
11
11
12
- > Requires [ authentication] ( security.md ) .
12
+ > Requires [ authentication] ( ../ security.md) .
13
13
14
14
``` php
15
15
$webhooks = $client->organization()->all('KnpLabs');
@@ -19,7 +19,7 @@ Returns an array of webhooks for the organization.
19
19
20
20
### Get a webhook for an organization
21
21
22
- > Requires [ authentication] ( security.md ) .
22
+ > Requires [ authentication] ( ../ security.md) .
23
23
24
24
``` php
25
25
$webhook = $client->organization()->show('KnpLabs', 123);
@@ -29,7 +29,7 @@ Returns the webhook with the ID 123 as an array for the organization.
29
29
30
30
### Create a new webhook for an organization
31
31
32
- > Requires [ authentication] ( security.md ) .
32
+ > Requires [ authentication] ( ../ security.md) .
33
33
34
34
``` php
35
35
$webhook = $client->organization()->create('KnpLabs', array(
@@ -53,7 +53,7 @@ The create webhook will be returned as an array.
53
53
54
54
### Update an existing webhook for an organization
55
55
56
- > Requires [ authentication] ( security.md ) .
56
+ > Requires [ authentication] ( ../ security.md) .
57
57
58
58
``` php
59
59
$success = $client->organization()->update('KnpLabs', 123, array(
@@ -76,7 +76,7 @@ In case of success, an array of informations about the webhook will be returned.
76
76
77
77
### Ping a webhook for an organization
78
78
79
- > Requires [ authentication] ( security.md ) .
79
+ > Requires [ authentication] ( ../ security.md) .
80
80
81
81
``` php
82
82
$client->organization()->pings('KnpLabs', 123);
@@ -86,10 +86,10 @@ No content is returned.
86
86
87
87
### Delete a webhook for an organization
88
88
89
- > Requires [ authentication] ( security.md ) .
89
+ > Requires [ authentication] ( ../ security.md) .
90
90
91
91
``` php
92
92
$client->organization()->delete('KnpLabs', 123);
93
93
```
94
94
95
- No content is returned.
95
+ No content is returned.
0 commit comments