Skip to main content

Disable Token

POST /payment/disable-token

Test URL

The disable token request will be made to the following URL:

https://checkout-api.staging.straumur.is/api/v1/payment/disable-token

Request Example

{
"tokenValue": "A1B2C3D4E5F6G7H8"
}

Request Body Fields

FieldTypeRequiredDescriptionExampleMin LengthMax Length
tokenValueStringRequiredThe card token you want to disable.A1B2C3D4E5F6G7H8

Example - Success Response

{
"success": true,
"message": "Token disabled successfully.",
"responseDateTime": "2025-01-04T09:50:14.343503Z",
"responseIdentifier": "e3605f81-6b09-4ce1-83ad-5a8d49f3cd44"
}

Example - Fail Response

{
"success": false,
"message": "Failed to disable token.",
"responseDateTime": "2025-01-04T09:50:14.343503Z",
"responseIdentifier": "e3605f81-6b09-4ce1-83ad-5a8d49f3cd44"
}

Response Fields

This table outlines the response fields with their corresponding types, descriptions and examples.

FieldTypeDescriptionExample
successBooleanIndicates the request status (true/false)true
messageStringHuman readable result of the request.Token disabled successfully. or Failed to disable token.
responseDateTimeStringThe date and time when the response was generated.2024-09-04T09:50:14.343503Z
responseIdentifierStringThe unique identifier for the response.7be7111c-2e8e-4cd4-a5ba-f15bdfd177c1

Error Response

Our error responses are standardised. Please see Errors.

You can also find a detailed overview of our HTTP Status Codes.