added
Card limit requests
March 31st, 2023
We are adding new endpoints to handle card limit change requests.
Card limit requests
While API consumers have long been able to update card limits directly, card limit change requests have been only available through the Pliant UI. Now we are introducing new endpoints that enable you to create, fetch, list, approve, reject and cancel card limit change requests:
- Create a new card limit change request
POST /cards/limits/requests - Get a list of all card limit change requests
GET /cards/limits/requests - Get details for an existing card limit change request
GET /cards/limits/requests/{cardLimitRequestId} - Cancel an open card limit change request
DELETE /cards/limits/requests/{cardLimitRequestId} - Approve an open card limit change request
POST /cards/limits/requests/{cardLimitRequestId}/approve - Reject an open card limit change request
POST /cards/limits/requests/{cardLimitRequestId}/reject
Remarks on the business logic:
- Only one card limit request can be
PENDING
per card. In case there is already a card limit request open for one card and you are creating another one the API responds with a helpful error message. - Only card limit requests with the status
PENDING
can be cancelled asAPPROVED
,REJECTED
andCANCELED
are considered as final status.
Minor improvements
- In the scope of this change, we are also adding a new endpoint to cancel card requests
DELETE /cards/requests/{cardRequestId}