Delete analysis tokens

After receiving and storing the tokens data, the built-in stochastic analysis and the indices of tokens formerly generated using an alphabet for a number of digits, the production line is completely emptied, has served its purpose and MUST be dismantled. To do this, the identifier of the tokens object MUST be sent as an HTTP request path parameter.

The identifier of the deleted tokens object is returned from the remote service as data id together with the data type: tokens together with other attribute–value pairs in the JSON response body.

Request endpoint

DELETE SERVER:PORT/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX

Response status

200

Request headers

Accept:application/vnd.api+json
Content-Type:application/vnd.api+json
Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS

Response headers

Transfer-Encoding:chunked
Connection:keep-alive
Accept:application/vnd.api+json
Cache-Control:no-cache
Date:Tue, 19 Mar 2024 12:57:48 GMT
Content-Type:application/vnd.api+json
Server:nginx/1.25.4

Request body

# intentionally blank

Response body

{
    "links": {
        "self": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
    },
    "data": {
        "attributes": {
            "analysis": "metrics",
            "rate": 8948,
            "reachable": "0",
            "alphabet": "DICE",
            "available": "0",
            "partial": false,
            "checksum": "0000000000000000000000000000000000000000000000000000000000000000000000",
            "status": "deleted",
            "filesizes": {
                "score": 37769,
                "analysis": 2067,
                "data": 124415,
                "delta": 40658
            },
            "digits": "5",
            "filehashes": {
                "score": "6ebb1cd28e70284f6b3ef730740d1cf88b87210f1d321c4a172ab4e44872dc70",
                "analysis": "f5123fcff04d06463fbed59b69437b0b063daefe3ab5c23acbd4e6be8adb2ed2",
                "data": "1603dbf327d04b23234404e8d199d3bf5aa42174f91ae4c60cc3f42043a8fca4",
                "delta": "c86a3aedff531f0fc17f63034a5414f2b5e0fd3fd75d43643700e9c03660b55d"
            },
            "size": "7776",
            "timestamps": {
                "ended": "2024-03-19T12:57:45.511Z",
                "analyzed": "2024-03-19T12:57:48.261Z",
                "deleted": "2024-03-19T12:57:48.791Z",
                "started": "2024-03-19T12:57:41.163Z",
                "requested": "2024-03-19T12:57:41.133Z",
                "finished": "2024-03-19T12:57:48.270Z"
            }
        },
        "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
        "type": "tokens",
        "relationships": {
            "payment": {
                "data": {
                    "id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
                    "ident": "pi_XXXXXXXXXXXXXXXXXXXXXXXX",
                    "type": "transaction"
                }
            }
        }
    }
}

HTTPie example

$ http delete SERVER:PORT/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX Accept:application/vnd.api+json Content-Type:application/vnd.api+json Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS