Skip to main content
GET
https://api.docksys.xyz
/
api
/
v1
/
verify
/
session
/
{sid}
/
stream
Stream verification status via SSE
curl --request GET \
  --url https://api.docksys.xyz/api/v1/verify/session/{sid}/stream \
  --header 'Authorization: Bearer <token>'
"event: status\\ndata: {\"sid\":\"vsn_...\",\"pid\":\"pid-yourapp\",\"status\":\"pending\",\"result\":null}\\n\\nevent: complete\\ndata: {\"sid\":\"vsn_...\",\"pid\":\"pid-yourapp\",\"result\":{\"discordId\":\"123\",\"robloxId\":\"456\",\"linkChanged\":false,\"previousRobloxId\":null}}\\n\\n"

Documentation Index

Fetch the complete documentation index at: https://docs.docksys.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sid
string
required

Verification session identifier.

Response

SSE stream.

The response is of type string.

Example:

"event: status\\ndata: {\"sid\":\"vsn_...\",\"pid\":\"pid-yourapp\",\"status\":\"pending\",\"result\":null}\\n\\nevent: complete\\ndata: {\"sid\":\"vsn_...\",\"pid\":\"pid-yourapp\",\"result\":{\"discordId\":\"123\",\"robloxId\":\"456\",\"linkChanged\":false,\"previousRobloxId\":null}}\\n\\n"