Tests
🚧
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.
Update
Invocation Body
{
webhookEvent: "test:update";
payload: {
id: string;
createdAt: Date;
createdBy: string;
updatedAt: Date;
updatedBy: string;
displayId: number;
name: string;
preconditions: string;
steps: {
action: string;
expectation: string;
}[];
assignedTo: string;
result: "passed" | "failed" | "inProgress" | "untested";
caseId: string;
};
}
Delete
Invocation Body
{
webhookEvent: "test:delete";
payload: {
id: string;
createdAt: Date;
createdBy: string;
updatedAt: Date;
updatedBy: string;
displayId: number;
name: string;
preconditions: string;
steps: {
action: string;
expectation: string;
}[];
assignedTo: string;
result: "passed" | "failed" | "inProgress" | "untested";
caseId: string;
};
}