Skip to main content
POST
https://api.docksys.xyz
/
api
/
v1
/
verify
/
session
Create verification session
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.

Authorizations

Authorization
string
header
required

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

Body

application/json
pid
string
required

PID owned by the authenticated API key.

clientId
string
required

Developer-defined client identifier used to map completion back to your user.

guildId
string | null

Response

Verification session created or existing pending session reused.

status
enum<integer>
Available options:
200
data
object
timestamp
string<date-time>
version
string
verifyRequestsRemaining
integer | null
verifyIpRequestsRemaining
integer | null