Projects
🚧
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: "project:create";
payload: {
id: string;
createdAt: Date;
createdBy: string;
updatedAt: Date;
updatedBy: string;
name: string;
identifier: string;
icon: string;
color: string;
};
}
Update
Invocation Body
{
webhookEvent: "project:update";
payload: {
id: string;
createdAt: Date;
createdBy: string;
updatedAt: Date;
updatedBy: string;
name: string;
identifier: string;
icon: string;
color: string;
};
}
Delete
Invocation Body
{
webhookEvent: "project:delete";
payload: {
id: string;
createdAt: Date;
createdBy: string;
updatedAt: Date;
updatedBy: string;
name: string;
identifier: string;
icon: string;
color: string;
};
}