Termination requests

Create credit card termination request

Creates a termination request for the credit card application specified in the request URL. See the credit cards guide for more information on how the termination process works.

post/v1/credit_card_applications/{application_id}/termination_requests

Path parameters

application_idstring required

Request body

reason'CUSTOMER_WISH' required

The reason for the termination.

Example request

{
  "reason": "CUSTOMER_WISH"
}

Response

Termination record

idstring
application_idstring

The ID of the credit card application that is being terminated.

reason'CUSTOMER_WISH' | 'OTHER_IMMEDIATE' | 'OTHER_ORDINARY'

The reason for the termination.

status'INITIATED' | 'IN_PROGRESS' | 'FINALIZED' | 'REVOKED'

The current status of the credit card termination.

legally_terminated_atstring date

The date when the credit card termination will take effect.

revocable_untilstring date

The date until which the termination can be revoked.

created_atstring date-time

UTC timestamp from when the termination was created.

Example response

{
  "id": "ac8df7d811c042faacabd8162de7b789cctr",
  "application_id": "796ff7b9961c4fe1b4470e45298b5d69ccla",
  "reason": "CUSTOMER_WISH",
  "status": "INITIATED",
  "legally_terminated_at": "2023-08-31",
  "revocable_until": "2023-08-02",
  "created_at": "2023-07-28T14:47:00.000Z"
}