Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions api-references/payments/billpay/api-integration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5732,7 +5732,8 @@
"REJECTED",
"DEFAULT_RESOLVED",
"REFUNDED",
"PENDING_REFUND"
"PENDING_REFUND",
"FAILED"
]
},
"disputeId": {
Expand Down Expand Up @@ -9213,8 +9214,14 @@
},
"status": {
"type": "string",
"description": "Current biller status as received from BBPS MDM.",
"example": "ACTIVE"
"description": "Current biller lifecycle status as received from BBPS MDM.\n\nACTIVE: Biller is live on the network and available for bill fetch and payment.\nDEACTIVATED: Biller has been deactivated and is not available for new bill fetches or payments.\nPENDING_DEACTIVATION: Deactivation is in progress; treat the biller as transitioning away from ACTIVE.\nPENDING_DELETE: Deletion is pending in MDM before the biller record is fully removed.",
"example": "ACTIVE",
"enum": [
"ACTIVE",
"DEACTIVATED",
"PENDING_DEACTIVATION",
"PENDING_DELETE"
]
},
"interchangeFee": {
"type": "array",
Expand Down
Loading