checkout.error
Emitted when an error occurs on a checkout.
namestring
Name of this event, in the format entity.event_type
.
dataobject or null
Event payload.
errorobject
Information about the warning or error that occurred.
typestring
Type of error encountered.
codestring
Short snake case string that describes this error. Use to search the error reference.
detailstring
Some information about what went wrong as a human-readable string.
documentation_urlstring<uri>
Link to a page in the error reference for this specific error.
Example
123456789101{
2 "name": "checkout.error",
3 "data": {},
4 "error": {
5 "type": "front-end_error",
6 "code": "invalid_email_address",
7 "detail": "The email address supplied isn't valid.",
8 "documentation_url": "https://developer.paddle.com/errors/paddlejs/invalid_email"
9 }
10}