Skip to main content
POST
/
api
/
core
/
use-cases
/
{use_case_id}
/
qr-link
Generate a QR code login link for a use case
curl --request POST \
  --url https://api.example.com/api/core/use-cases/{use_case_id}/qr-link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "knowledge_asset_ids": [
    "<string>"
  ],
  "expires_at": "2023-11-07T05:31:56Z"
}
'
{
  "token_id": "<string>",
  "token": "<string>",
  "expires_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.genow.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Path Parameters

use_case_id
string
required

Body

application/json
knowledge_asset_ids
string[]
expires_at
string<date-time> | null

When set, the magic link stops working after this instant (UTC). Omit or null for a link that does not expire by date.

Response

Successful Response

token_id
string
required
token
string
required
expires_at
string<date-time> | null
required