Milestones

Milestones

🚧

As the service is in beta, the body of the webhook may change in the future. We will try to keep the changes to a minimum, but we cannot guarantee that the body will stay the same.

Create

Invocation Body

{
  webhookEvent: "milestone:create";
  payload: {
    id: string;
    createdAt: Date;
    createdBy: string;
    updatedAt: Date;
    updatedBy: string;
    displayId: number;
    name: string;
  };
}

Update

Invocation Body

{
  webhookEvent: "milestone:update";
  payload: {
    id: string;
    createdAt: Date;
    createdBy: string;
    updatedAt: Date;
    updatedBy: string;
    displayId: number;
    name: string;
  };
}

Delete

Invocation Body

{
  webhookEvent: "milestone:delete";
  payload: {
    id: string;
    createdAt: Date;
    createdBy: string;
    updatedAt: Date;
    updatedBy: string;
    displayId: number;
    name: string;
  };
}