curl --request POST \
--url https://api.docksys.xyz/api/v1/verify/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pid": "pid-yourapp",
"clientId": "user_123",
"guildId": "optional"
}
'{
"status": 200,
"data": {
"sid": "<string>",
"pid": "<string>",
"clientId": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"reusedExisting": true,
"verifyUrl": "<string>"
},
"timestamp": "2023-11-07T05:31:56Z",
"version": "<string>",
"verifyRequestsRemaining": 123,
"verifyIpRequestsRemaining": 123
}Creates a PID-scoped verification session and returns a verification URL containing pid + sid.
curl --request POST \
--url https://api.docksys.xyz/api/v1/verify/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pid": "pid-yourapp",
"clientId": "user_123",
"guildId": "optional"
}
'{
"status": 200,
"data": {
"sid": "<string>",
"pid": "<string>",
"clientId": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"reusedExisting": true,
"verifyUrl": "<string>"
},
"timestamp": "2023-11-07T05:31:56Z",
"version": "<string>",
"verifyRequestsRemaining": 123,
"verifyIpRequestsRemaining": 123
}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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.