Reject card renewal

Here, you will learn how to reject card renewals in Tuum.

Use case

In this example, we will demonstrate how to reject a card renewal using the cardRenewalId parameter.

A pending card renewal can be rejected only when its status is WAITING or APPROVED.

Use case data
API parameters with values

We will reject card renewal C001664282475.

...card-renewals/C001664282475/reject

The approval will be made using the MANUAL_REVIEW_DECLINED decision code.

{
  "decisionCode": "MANUAL_REVIEW_DECLINED"
}

Sample API call

To reject a card renewal, use the following endpoint:

https://card-api.sandbox.tuumplatform.com/api/v1/card-renewals/{cardRenewalId}/reject

Learn more about the reject card renewal endpoint in the Tuum developer portal.

Sample request

Below is a sample API request to reject a card renewal.

{
  "decisionCode": "MANUAL_REVIEW_DECLINED"
}

Sample response

Below you will find the response to the API request:

Response
{
    "errors": null,
    "validationErrors": null,
    "data": null
}

Result

The card renewal request has been rejected.

Last updated

Was this helpful?