Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Property

Type

Description

Id

Guid

An unique Id for the webhook event.

EventName

String

The name of the event.

CreatedAtDateTimeData

DateTime

The Object

An object with a set of properties for each webhook event. A common property for this object is CreatedAtDateTime which specifies the date and time the event occurred in UTC and formatted according to ISO 8601.

Data

Object

An object with a set of properties for each webhook event.

Available events

Expand
titleAccountCreated

Data object:

Property

Type

Description

AccountId

Guid

The BrickId of the account.

JSON body example:

Code Block
languagejson
{
  "Id": "4a92ced3-49fd-4ec4-ab4f-b1dce978da7f",
  "EventName": "AccountCreated",
  "Data": [
    {
      "AccountId": "fbafd9df-f74f-4ef6-a4ed-5b604215ee03",
      "CreatedAtDateTime": "2020-11-30T06:59:53.7972377Z"
    }
  ]
}

...