Tokens are used to authenticate/authorize API requests.

Section “Access Tokens”
Create token
- Access Tokens → Create new token.
- Specify the name, validity period (if needed), and permissions.
- Save.
View/Edit/Delete
- List of tokens; click to edit/delete.
How to pass the token Note for endpoints: you can pass the token (and it’s often more convenient) in the request body as the token field. Example:
# Endpoint URL
url = "https://api.neuro-vision.ru/v1/kyc/process"
# Parameters for KYCDocument
data = {
"token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", # we pass the token in the body
"schemaId": "ca30efc0-9202-11f0-ad12-90496423b317",
"mode": "sync", # or "async"
} For the full specification, see the corresponding sections of the API. In most endpoints, either option (header/body) is allowed, but in the
multipart/form-dataform, thetokenfield is often more convenient.
Important
- Store tokens as secrets; do not share them with third parties and do not publish them.