### GET /agents/{id} Source: https://gegechkori.ru/gps.az/llms.txt Retrieves detailed information about a specific client or agent. ```APIDOC ## GET /api/v3/agents/{id} ### Description Get client details by ID. ### Method GET ### Endpoint /api/v3/agents/{id} ### Parameters #### Path Parameters - **id** (string) - Required - The unique identifier of the agent ### Response #### Success Response (200) - **agentId** (string) - **parentId** (string) - **name** (string) - **fullName** (string) - **agentInfoType** (int) - 0=client, 1=partner, 2=group, 3=admin_group, 4=test, 5=contract - **email** (string) - **inn** (string) - **address** (string) ``` -------------------------------- ### POST /Vehicles/cmd/create Source: https://gegechkori.ru/gps.az/llms.txt Sends a command to a specific vehicle. ```APIDOC ## POST /api/v3/Vehicles/cmd/create ### Description Send command to vehicle. ### Method POST ### Endpoint /api/v3/Vehicles/cmd/create ### Request Body - **id** (string) - Required - Vehicle ID - **command** (string) - Required - **retries** (int) - Optional - **idTemplate** (string) - Optional ``` -------------------------------- ### POST /users Source: https://gegechkori.ru/gps.az/llms.txt Creates a new user within the system. ```APIDOC ## POST /api/v3/users ### Description Create a new user. ### Method POST ### Endpoint /api/v3/users ### Request Body - **login** (string) - Required - **password** (string) - Required - **email** (string) - Required - **lastName** (string) - Optional - **firstName** (string) - Optional - **position** (string) - Optional - **phone** (string) - Optional - **organization** (string) - Optional ``` -------------------------------- ### POST /auth/login Source: https://gegechkori.ru/gps.az/llms.txt Authenticates a user and returns an authorization token. ```APIDOC ## POST /api/v3/auth/login ### Description Get authorization token for API access. ### Method POST ### Endpoint /api/v3/auth/login ### Request Body - **login** (string) - Required - **password** (string) - Required ### Response #### Success Response (200) - **AuthId** (uuid) - Authorization token - **User** (string) - Username ``` -------------------------------- ### Authenticate User Source: https://gegechkori.ru/gps.az/llms.txt Request an authorization token using login credentials. ```json { "login": "string", "password": "string" } ``` ```json { "AuthId": "uuid", "User": "string" } ``` -------------------------------- ### POST /Vehicles/recyclebin/restore Source: https://gegechkori.ru/gps.az/llms.txt Restore objects from the recycle bin. ```APIDOC ## POST /Vehicles/recyclebin/restore ### Description Restore objects from the recycle bin. ### Method POST ### Endpoint /Vehicles/recyclebin/restore ``` -------------------------------- ### Find Child Clients Source: https://gegechkori.ru/gps.az/llms.txt Retrieve a list of child clients associated with a specific parent ID. ```json { "parentId": "string" } ``` -------------------------------- ### Change User Status Source: https://gegechkori.ru/gps.az/llms.txt Update the status of a user with a description and additional data. ```json { "status": int, "description": "string", "data": "string" } ``` -------------------------------- ### POST /Vehicles/recyclebin/erase Source: https://gegechkori.ru/gps.az/llms.txt Permanently delete a vehicle from the recycle bin. ```APIDOC ## POST /Vehicles/recyclebin/erase ### Description Permanently delete a vehicle from the recycle bin. ### Method POST ### Endpoint /Vehicles/recyclebin/erase ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.