Async APIsUnmask Async

Unmask Async

Submit an unmask job for background processing and receive a tracking ID to poll for results.

{
  "unmask": [
    {
      "token_value": "8oGEcGVEkj 700ZSgo1pA"
    }
  ]
}
{
  "data": [
    {
      "tracking_id": "4f0f6df0-b063-409a-ace0-88398d7bf3d821122023081515",
      "status": "PENDING"
    }
  ],
  "success": true,
  "error": { "message": "" }
}

Submits an unmask request for background processing. Returns a tracking_id immediately — results are retrieved by polling the Async Status endpoint.

Endpoint

MethodURL
PUT{baseurl}/unmask/async

Request body

body
unmaskarray
Required

List of tokenized values to unmask asynchronously.

body
unmask[].token_valuestring
Required

The tokenized text to unmask.

After submission

Use the tracking_id to poll the Async Status endpoint. The unmasked values are returned in the result field when the job status is SUCCESS.