| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

subaccountId

uuid

limit

integer

1 to 100

Defaults to 25

Maximum number of items to return

cursor

string

The cursor to use for pagination. Identifies your place on the list

accept

string

enum

Defaults to application/hal+json

Generated from available response content types

application/hal+jsonapplication/problem+json

Allowed:

`application/hal+json``application/problem+json`

# ``200      Successful operation

object

Astrada's Webhook resources.

\_links

object

required

self

object

self object

next

object

next object

\_embedded

object

required

items

array of objects

items

object

Astrada's Webhook resource.

\_links

object

required

\_links object

id

uuid

required

url

uri

required

description

string \| null

required

eventTypes

array of strings

required

length ≥ 1

`cardsubscription.created``cardsubscription.updated``transaction.created``transaction.updated``transactionmessage.created``networkbulkfeed.statechanged``enrichment.merchant.created``banklink.completed``bankaccount.state_changed``banktransaction.created``banktransaction.deleted``transaction.match.created``transaction.match.deleted`

subaccountId

uuid

required

createdAt

date-time

required

Date and time when this resource was created, in UTC, following ISO 8601 format.

updatedAt

date-time

required

Date and time when this resource was last updated, in UTC, following ISO 8601 format.

enabled

boolean

Defaults to true

# ``400      The server cannot or will not process the request due to something that is perceived to be a client error

# ``401      Authentication credentials were either missing or incorrect

# ``403      Authentication credentials used do not have have permissions to perform the request

# ``500      The server encountered an unexpected condition that prevented it from fulfilling the request

```json
{
  "_links": {
    "self": {
      "href": "/webhooks"
    }
  },
  "_embedded": {
    "webhooks": [
      {
        "_links": {
          "self": {
            "href": "/webhooks/3a45ba7f-8d8f-4f6a-86a5-a17ea0328241"
          }
        },
        "id": "3a45ba7f-8d8f-4f6a-86a5-a17ea0328241",
        "url": "https://example-api.com/path",
        "description": "Example of Webhook description",
        "eventTypes": [
          "transactionmessage.created"
        ],
        "subaccountId": "f297d659-c13d-4219-aeaa-e10a845140a5",
        "createdAt": "2023-12-19T14:45:00Z",
        "updatedAt": "2023-12-19T14:45:00Z",
        "enabled": true
      },
      {
        "_links": {
          "self": {
            "href": "/webhooks/627f9c6d-ec9f-4118-84f3-97a77f447e32"
          }
        },
        "id": "627f9c6d-ec9f-4118-84f3-97a77f447e32",
        "url": "https://example-api.com/path",
        "description": "Example of Webhook description",
        "eventTypes": [
          "transactionmessage.created"
        ],
        "subaccountId": "f297d659-c13d-4219-aeaa-e10a845140a5",
        "createdAt": "2023-12-19T14:46:00Z",
        "updatedAt": "2023-12-19T14:46:00Z",
        "enabled": true
      }
    ]
  }
}
```
