For Developers

Materializations Overview

Our system schedules a Materialization when any of the following things happen:

  • An Integration's sharing rules change
  • Updated data is available for a Source via our syncs

During a materialization, the data returned by the Graph API updates.

Properties

PropertyTypeDescription
idstringThe UUID for the object.
$filter operators: equals in not in
created_dateDateWhen the object was first created by Edlink.
updated_dateDateWhen the object was last changed in Edlink. Typically, this is the time of completion.
stateMaterializationStateThe state of the materialization.
prioritynumberThe priority of the materialization.
integration_idstringThe UUID of the associated Integration.
source_idstringThe UUID of the associated Source.

JSON Example

{
    "id": "00000000-0000-0000-0000-000000000000",
    "created_date": "2021-07-13T20:00:54.521Z",
    "updated_date": "2021-07-13T21:02:22.330Z",
    "state": "complete",
    "priority": 0,
    "source_id": "00000000-0000-0000-0000-000000000000",
    "integration_id": "00000000-0000-0000-0000-000000000000"
}