LISTING_CONTRACT_FLOW_PARTIALLY_SIGNED
When the contract is partially signed by candidate in EverReal, the below payload is submitted as a notification.
interface IWebhookDispatcher<IListingContractFlowPartiallySignedAction> {
uuid: string;
operation: string;
subdomain: string;
language: string;
createdAt: Date;
data: IListingContractFlowPartiallySignedAction;
}
interface IListingContractFlowPartiallySignedAction {
id: string;
metadata?: {
unitId?: string;
listingId?: string;
candidateId?: string;
};
status?: CONTRACT_STATUS;
contractFlowType: CONTRACT_FLOW_TYPE;
contractFile?: {
name?: string;
resourcePath?: string;
order?: number;
size?: number;
type?: string;
};
}
Last updated
Was this helpful?