Interface CustomerPasswordTokenCreatedMessagePayload

Generated after a successful Create password reset token for Customer request. The resource property of the Message is a CustomerPasswordTokenReference.

interface CustomerPasswordTokenCreatedMessagePayload {
    customerId: string;
    expiresAt: string;
    type: "CustomerPasswordTokenCreated";
}

Properties

customerId: string

Unique identifier of the Customer.

expiresAt: string

Date and time (UTC) the password token expires.

type: "CustomerPasswordTokenCreated"