# Аутентифікація

Данный метод используется для проверки пользовательского токена доступа.

| Метод               |
| ------------------- |
| /users/authenticate |

| Параметры запроса | Описание                                       |
| ----------------- | ---------------------------------------------- |
| access\_token     | Токен, полученный в ходе процедуры авторизации |

| Параметры ответа | Описание                                                |
| ---------------- | ------------------------------------------------------- |
| authenticated    | Успешная/неуспешная аутентификация                      |
| user             | Объект пользователя, если аутентификация прошла успешно |

{% tabs %}
{% tab title="XML/HTML/SVG" %}

```markup
<?xml version="1.0" encoding="UTF-8"?>
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <StatusCode>200</StatusCode>
   <Status>OK</Status>
   <Data xsi:type="UserAuthenticateResult">
      <authenticated>true</authenticated>
      <user>
         <id>35</id>
         <guid>a4ffa510-a5d9-41f7-832c-917e1f355b56</guid>
         <email>dima.bobrov@gm.com</email>
         <phone>+38 0449515103</phone>
      </user>
   </Data>
</Response>
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.rezonuniversal.com/metody-api/autentifikaciya-polzovatelei-c-vneshnikh-resursov/autentifikaciya.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
