Developers
V1AccountDeletionReceipt

Check deletion using the private receipt after login removal

The secret goes in the request body, never in a URL. Returns only request state and timestamps. Unknown and expired receipts return the same response. Does not authenticate a MedBuk account or return records.

POST
/v1/account/deletion/receipt

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/account/deletion/receipt" \  -H "Content-Type: application/json" \  -d '{    "receiptToken": "string"  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "status": "pending",  "requestedAt": "2019-08-24T14:15:22Z",  "completedAt": "2019-08-24T14:15:22Z",  "receiptExpiresAt": "2019-08-24T14:15:22Z",  "noticeVersion": "string"}