# Get all credit card termination requests Returns a list of all credit card termination requests. Endpoint: GET /v1/credit_card_terminations Version: 1.0 ## Query parameters: - `page[size]` (integer) Indicates the number of entries to return on each results page. - `page[number]` (integer) Indicates the number of results pages to return. - `sort` (string) Sort the results by created_at or updated_at. ## Response 200 fields (application/json): - `id` (string) Example: "ac8df7d811c042faacabd8162de7b789cctr" - `application_id` (string) The ID of the credit card application that is being terminated. Example: "796ff7b9961c4fe1b4470e45298b5d69ccla" - `reason` (string) The reason for the termination. Enum: "CUSTOMER_WISH", "OTHER_IMMEDIATE", "OTHER_ORDINARY" - `status` (string) The current status of the credit card termination. Enum: "INITIATED", "IN_PROGRESS", "FINALIZED", "REVOKED" - `legally_terminated_at` (string) The date when the credit card termination will take effect. Example: "2023-08-31" - `revocable_until` (string) The date until which the termination can be revoked. Example: "2023-08-02" - `created_at` (string) UTC timestamp from when the termination was created. Example: "2023-07-28T14:47:00.000Z" ## Response 403 fields (application/json): - `errors` (array) Example: [{"id":"7aaf4dfb-b7cd-4a50-a1d2-fad0e19624ef","status":403,"code":"unauthorized_action","title":"Unauthorized Action","detail":"Unauthorized action is not allowed."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail ## Response 500 fields (application/json): - `errors` (array) Example: [{"id":"b5a79a32-fc0c-4326-aed4-a7e76d565f86","status":500,"code":"generic_error","title":"Generic Error","detail":"There was an error."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail