Card Customization & Callback Visibility
This release includes improvements to callback visibility, card design support, and extended card state information.
Callback Status Visibility
API consumers can now check if callbacks are activated for their integration.
Endpoint:
GET /callbacks/subscriptions— Returns the list of active callback subscriptions and now also includes thecallbacksEnabled(boolean) flag.
For more information, please check: https://partner.getpliant.com/reference/get-callback-subscriptions.
Card Design Support
A new cardDesignId property has been added to Issue Card endpoints, allowing specification of card designs (i.e., color variants for virtual cards) during card issuance.
Request & Response Changes:
{
"cardDesignId": "design-uuid-here",
...
}
Affected Endpoints:
POST /cards— Issue CardPOST /cards/instant— Issue Card (Instant)POST /cards/instant/pci— Issue Card (Instant as PCI-DSS)
For more information, please check: https://partner.getpliant.com/reference/issue-card
Extended Card State Information
To provide better visibility into why a card is in PENDING status, we have added a new pendingDetails property.
New Property:
pendingDetails(string) — The detailed reason for a card's pending state. Possible values:PENDING_ACTIVATIONPENDING_ISSUANCEPENDING_REGISTRATIONPENDING_VALIDITYPENDING_SANCTION_SCREENPENDING_INFORMATION
This field is only populated when status is PENDING (or one of the deprecated PENDING_* statuses) and will be null for all non-pending statuses.
Deprecation Notice:
The granular PENDING_* status values (e.g., PENDING_ACTIVATION, PENDING_INFORMATION) are now deprecated. Please migrate to using the status: PENDING combined with pendingDetails for the specific reason. These deprecated statuses will be removed with the next API version.
Affected Endpoints:
POST /cards/details— Card Details- Card-related callbacks
For more information, please check: https://partner.getpliant.com/reference/get-multiple-card-details.
This release includes improvements to callback visibility, card design support, and extended card state information.
