Skip to main content
POST
/
sdk
/
create-verification-link
Create a verification link
curl --request POST \
  --url https://api.botshield.ai/operations/sdk/create-verification-link \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "data": {
    "data": {
      "request_id": "req_abc123xyz",
      "deep_link": "botshield://verify?request_id=req_abc&org_id=org_xyz",
      "web_url": "https://app.botshield.ai/verify?request_id=req_abc&org_id=org_xyz",
      "qr_code_url": "https://api.botshield.ai/qr/req_abc",
      "expires_at": "2023-11-07T05:31:56Z",
      "organization": {
        "id": "<string>"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

API key with Bearer prefix (e.g., 'Bearer bs_live_sk_...')

Body

application/json

The body is of type object.

Response

Verification link created

data
object
required