Skip to main content
POST
/
api
/
core
/
service-accounts
/
{service_account_id}
/
magic-links
Generate a persistent magic login link
curl --request POST \
  --url https://api.example.com/api/core/service-accounts/{service_account_id}/magic-links \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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

service_account_id
string
required

Body

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

Response

Successful Response

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