Skip to main content
POST
/
v2
/
BulkListAllUserRequests
List all user requests in bulk
curl --request POST \
  --url http://localhost:3000/v2/BulkListAllUserRequests \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "unlockuuid": "<string>",
  "offset": 0,
  "limit": 10,
  "request_metadata": {}
}
'
{
  "status": "ok",
  "total": 123,
  "rows": [
    {}
  ]
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
unlockuuid
string
required

UUID from bulk list unlock

offset
integer
default:0

Offset for pagination

limit
integer
default:10

Limit for pagination

request_metadata
object

Additional metadata for the request

Response

200 - application/json

All user requests listed successfully

status
string
Example:

"ok"

total
integer

Total number of user requests found

rows
object[]