2018-07-08 20:50:19 +05:30
|
|
|
<?php
|
|
|
|
return [
|
|
|
|
'webhook-with-secret' => [
|
|
|
|
'id' => 1,
|
|
|
|
'url' => 'http://localhost:80/webhooks/ely',
|
|
|
|
'secret' => 'my-secret',
|
2020-06-14 03:50:31 +05:30
|
|
|
'events' => ['account.edit'],
|
2018-07-08 20:50:19 +05:30
|
|
|
'created_at' => 1531054333,
|
|
|
|
],
|
|
|
|
'webhook-without-secret' => [
|
|
|
|
'id' => 2,
|
|
|
|
'url' => 'http://localhost:81/webhooks/ely',
|
|
|
|
'secret' => null,
|
2020-06-14 03:50:31 +05:30
|
|
|
'events' => ['account.edit'],
|
2018-07-08 20:50:19 +05:30
|
|
|
'created_at' => 1531054837,
|
|
|
|
],
|
|
|
|
'webhook-without-events' => [
|
|
|
|
'id' => 3,
|
|
|
|
'url' => 'http://localhost:82/webhooks/ely',
|
|
|
|
'secret' => null,
|
2020-06-14 03:50:31 +05:30
|
|
|
'events' => [],
|
2018-07-08 20:50:19 +05:30
|
|
|
'created_at' => 1531054990,
|
|
|
|
],
|
|
|
|
];
|