Инструменты страницы



Deletion of the card from the list of saved ones

In this document, the following data type conventions are used when describing request and response parameters:

  • string – string;
  • array – data array;
  • object – data object;
  • data – date;
  • boolean – boolean (logical) data type;
  • int. (integer) – integer data type;
  • amount – a numeric data type (amount).

Request parameters:

Parameter Type Description Example

type

string

Specifying the entity type, the following values are possible:

  • client – customer;
  • binding – binding.
binding

uuid

string The entity identifier of the specified type, the length is 32 bytes. 693EABCEDFFF4107B885243559381312

Request format:

POST /api/delete HTTP/1.1

Host: 3dsec.sberbank.ru/sbersafe

Authorization: <accessToken>

Content-Type: application/json

Accept: application/json; version=1.0

Content-Length: <content-lenght>

 

{

  "type": "<type>",

  "uuid": "uuid"

}

Response parameters:

Parameter Type Description Example

requestId

string

Request identifier.

gbhjnkme-rdcfgv-hbjnkm-7689ui-okp3ew

status

string

Indication of the status of the request processing result

SUCCESS

Response format:

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: <content-lenght>
Cache-Control: no-store
 
{
  "requestId": "<requestId>",
  "status": "<status>"
}