Skip to main content
POST
/
v2
/
BulkListTokens
List tokens in bulk
curl --request POST \
  --url http://localhost:3000/v2/BulkListTokens \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "unlockuuid": "<string>",
  "tokens": [
    "<string>"
  ],
  "request_metadata": {}
}
'
{
  "status": "ok",
  "rows": [
    {
      "tokenuuid": "<string>",
      "tokenbase": "<string>",
      "record": "<string>",
      "tokentype": "<string>"
    }
  ]
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
unlockuuid
string
required

UUID from bulk list unlock

tokens
string[]
required

Array of token UUIDs to retrieve

request_metadata
object

Additional metadata for the request

Response

200 - application/json

Tokens listed successfully

status
string
Example:

"ok"

rows
object[]