Granting access
To enable other users to track the statuses of routes and orders, add them to the interface and configure their permissions.
Adding a company manager
Access is provided with Yandex ID.
Note
Use your work or personal email to log in by creating a Yandex ID here: https://passport.yandex.com/auth/preregister.
Username and email can contain Latin letters, digits, period, and hyphen.
In Routing workspace
-
Open Routing Workspace.
-
In the menu on the left, go to Settings → Managers.
-
Add users:
-
At the bottom of the page, specify the new user's email address.
-
To add multiple users at once, specify their email addresses separated by comma.
-
Click Add.
-
- In the API
-
Note
When adding a user with the API, assign them the
manager
,dispatcher
, oradministrator
role.Send a request to the users resource. In the request, specify the user's username and role:
Request:
WindowsMacOS/LinuxcURL
curl -H "Content-Type: application/json" -H "Authorization: OAuth <your-OAuth-token>" -X POST -d @<File_path_in_UTF-8_encoding> https://courier.yandex.ru/api/v1/companies/<your-company-id>/users
File
{"login":"alice.the.girl", "role":"manager"}
cURL
curl -H "Content-Type: application/json" -H "Authorization: OAuth <your-OAuth-token>" -X POST -d '{"login":"alice.the.girl", "role":"manager"}' https://courier.yandex.ru/api/v1/companies/<your-company-id>/users
Result:
{ "id": 197162, "login": "alice.the.girl", "role": "manager" }
Configuring permissions
After adding an employee:
In Routing workspace
-
Open the user card.
-
Select a role: Manager, Dispatcher, or Administrator.
-
When you assign the Manager or Dispatcher role to a user, specify which depots and companies they should have access to. To do this, select the required options in the Depots section. The employee will get access to routes that start from the chosen depots.
- In the API
- A role is assigned to a user when you add them, and access to depots and companies for a Manager and Dispatcher is set in the interface.
Once the user is registered and added to the system, they will have access to Routing workspace interface at: https://yandex.com/courier/.
Deleting a user
In Routing workspace
-
Open Routing Workspace.
- In the menu on the left, go to Settings → Managers.
- Open the user card.
- At the bottom of the page, click Delete user.
- In the API
-
Send a request to the users resource. In the URI, specify the user ID:
Request:
cURL
curl -H "Content-Type: application/json" -H "Authorization: OAuth <your-OAuth-token>" -X DELETE https://courier.yandex.ru/api/v1/companies/<your-company-id>/users/<your-company-id>
Result:
{ "id": 197215, "login": "alice.the.girl", "role": "manager" }