Interest redemption failed
This event occurs when a quota is not redeemed with product interest-management.
Type: object
Domain: interest-management
Event: interest_redemption_failure
Version: 1
external_account_id required
Title: External account identifier
Description: A custom account ID string that uniquely identifies the account within your organization.
Type: string or null
Example:
999999999
external_redemption_id required
Title: External ID
Description: External identifier for operation.
Type: string
Example:
6104253a-qt53-41m0-a630-2z1h2761e3f8
message required
Title: Error message
Description: Description of error that occurred when trying to register new asset or quota
Type: string
Example:
This asset does not have any more available units.
created_at
Title: Created date
Description: Creation date of asset 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 redemption failed",
"description": "This event occurs when a quota is not redeemed with product interest-management.",
"required": [
"external_account_id",
"message",
"external_redemption_id"
],
"properties": {
"external_account_id": {
"type": [
"string",
"null"
],
"title": "External account identifier",
"description": "A custom account ID string that uniquely identifies the account within your organization.",
"examples": [
999999999
]
},
"external_redemption_id": {
"type": "string",
"title": "External ID",
"description": "External identifier for operation.",
"examples": [
"6104253a-qt53-41m0-a630-2z1h2761e3f8"
]
},
"message": {
"type": "string",
"title": "Error message",
"description": "Description of error that occurred when trying to register new asset or quota",
"examples": [
"This asset does not have any more available units."
]
},
"created_at": {
"type": "string",
"title": "Created date",
"description": "Creation date of asset on Pismo platform",
"format": "date-time",
"examples": [
"2020-12-29T19:48:25"
]
}
}
}
{
"external_account_id": 999999999,
"external_redemption_id": "6104253a-qt53-41m0-a630-2z1h2761e3f8",
"message": "This asset does not have any more available units.",
"created_at": "2020-12-29T19:48:25"
}
Updated 21 days ago