Interest withdrawal failed
This event occurs when a withdrawal is invalid and cannot be redeemed with product interest-management.
Type: object
Domain: interest-management
Event: interest_withdrawal_failure
Version: 1
tracking_id required
Title: Tracking ID.
Description: Unique withdrawal identifier defined by Customer.
Type: string
Example:
d0855c6b-b037-4dce-94c5-7a6ffc1800a3
account_id required
Title: Account identifier
Description: A custom account ID string that uniquely identifies the account within your organization.
Type: string
Example:
999999999
message required
Title: Error message
Description: Description of error that occurred when trying to register new withdrawal
Type: string
Example:
This deposit does not have any more available units.
created_at required
Title: Created date
Description: Creation date of withdrawal on Pismo platform
Type: string
Format: date-time
Example:
2020-12-29T19:48:25
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Interest withdrawal failed",
"description": "This event occurs when a withdrawal is invalid and cannot be redeemed with product interest-management.",
"required": [
"tracking_id",
"account_id",
"message",
"created_at"
],
"properties": {
"tracking_id": {
"type": "string",
"title": "Tracking ID.",
"description": "Unique withdrawal identifier defined by Customer.",
"examples": [
"d0855c6b-b037-4dce-94c5-7a6ffc1800a3"
]
},
"account_id": {
"type": "string",
"title": "Account identifier",
"description": "A custom account ID string that uniquely identifies the account within your organization.",
"examples": [
"999999999"
]
},
"message": {
"type": "string",
"title": "Error message",
"description": "Description of error that occurred when trying to register new withdrawal",
"examples": [
"This deposit does not have any more available units."
]
},
"created_at": {
"type": "string",
"title": "Created date",
"description": "Creation date of withdrawal on Pismo platform",
"format": "date-time",
"examples": [
"2020-12-29T19:48:25"
]
}
}
}
{
"tracking_id": "d0855c6b-b037-4dce-94c5-7a6ffc1800a3",
"account_id": "999999999",
"message": "This deposit does not have any more available units.",
"created_at": "2020-12-29T19:48:25"
}
Updated 21 days ago