Request authentication
Depending on the product or its resource, the following are used to work with Selectel product APIs and authenticate requests instead of a username and password:
-
IAM tokens are issued to service users. The token lifespan is 24 hours. IAM tokens are passed in the
X-Auth-Tokenheader and have different scopes:- Account-scoped IAM tokens (
iam_token_account_scoped) — for managing resources linked to the account; - Project-scoped IAM tokens (
iam_token_project_scoped) — for managing resources linked to the project;
- Account-scoped IAM tokens (
-
static tokens (
static_token) are issued to control panel users and are used to manage resources linked to the account. Tokens have no expiration date. Static tokens are passed in theX-Token.
The address (URL) for requests can be found in the Authentication subsection of the List of URLs instructions.
You can restrict access to the API by addresses that include https://api.selectel.ru.
Account-scoped IAM token (X-Auth-Token)
An account-scoped IAM token can only be issued to a service user.
The token is passed in the header X-Auth-Token.
An account-scoped IAM token (iam_token_account_scoped) grants access to manage most Selectel products and OpenStack API objects on par with a username and password in the my.selectel.ru control panel. It allows you to manage account resources.
The token lifespan is 24 hours.
The token allows you to manage:
- users and roles (IAM) and federations;
- balance and usage statistics;
- dedicated servers;
- OpenStack API objects (cloud servers, network volumes, and others) using the cloud platform projects and resources, project quotas and limits APIs, for details see the OpenStack documentation;
- global router;
- DNS hosting (legacy);
- mobile farm.
Get an account-scoped IAM token
An account-scoped IAM token can be issued to service users who have a permission with the scope set to Account.
If you use Windows, replace single quotes ('') with double quotes ("") in requests. We also recommend using PowerShell for requests and not using CMD.
- Send the following request:
curl -i -XPOST \
-H 'Content-Type: application/json' \
-d '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"<username>","domain":{"name":"<account_id>"},"password":"<password>"}}},"scope":{"domain":{"name":"<account_id>"}}}}' \
'https://cloud.api.selcloud.ru/identity/v3/auth/tokens'
Specify:
<username>— service user name. You can find the name in the control panel: in the top menu, click IAM → Service Users (the section is only available to the Account Owner and a user with theiam.adminrole);<account_id>— account number. You can find it in the control panel in the upper right corner;<password>— service user password; you can view it when creating the user or change it to a new one.
Upon successful authorization, a response with code 201 Created will be returned in the format:
HTTP/2 201
X-Subject-Token: token
- Find the token in the
X-Subject-Tokenheader.
Project-scoped IAM token (X-Auth-Token)
A project-scoped IAM token can only be issued to a service user.
The token is passed in the header X-Auth-Token.
A project-scoped IAM token (iam_token_project_scoped) grants access to manage most Selectel products and OpenStack API objects on par with a username and password in the my.selectel.ru control panel. It allows you to manage project resources.
The token lifespan is 24 hours.
The token allows you to manage:
- dedicated servers;
- OpenStack API objects (cloud servers, network volumes, and others) using the cloud platform projects and resources, project quotas and limits APIs, for details see the OpenStack documentation;
- cloud platform — direct public IP addresses, private DNS, Managed Databases, Managed Kubernetes, Container Registry, secrets manager (secrets, certificates, Let’s Encrypt® certificates);
- S3 (Swift API and Object Storage API);
- DNS hosting;
- Selectel email service;
- Cloud for 1C;
- audit logs.
Get a project-scoped IAM token
A project-scoped IAM token can be issued to service users who have a permission where:
If you use Windows, replace single quotes ('') with double quotes ("") in requests. We also recommend using PowerShell for requests and not using CMD.
- Send the following request:
curl -i -XPOST \
-H 'Content-Type: application/json' \
-d '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"<username>","domain":{"name":"<account_id>"},"password":"<password>"}}},"scope":{"project":{"name":"<project_name>","domain":{"name":"<account_id>"}}}}}' \
'https://cloud.api.selcloud.ru/identity/v3/auth/tokens'
Specify:
<username>— service user name. You can find the name in the control panel: in the top menu, click IAM → Service Users (the section is only available to the Account Owner and a user with theiam.adminrole);<account_id>— account number. You can find it in the control panel in the upper right corner;<password>— service user password; you can view it when creating the user or change it to a new one;<project_name>— project name.
Upon successful authorization, a response with code 201 Created will be returned in the format:
HTTP/2 201
X-Subject-Token: token
- Find the token in the
X-Subject-Tokenheader.
Static token (X-Token)
An X-Token can only be issued to a control panel user.
The token is passed in the request header X-Token.
A static token (static_token) provides full access to managing certain Selectel products on par with a login and password in the my.selectel.ru control panel. It does not allow you to manage OpenStack API objects.
The token lifespan is unlimited.
For APIs that do not support an account-scoped IAM token and a project-scoped IAM token, a static token is the only option:
Get a static token
- In the control panel, in the upper right corner, open the menu (account number) and select Profile.
- Go to the Access section → API Keys.
- Click Add Key.
- Enter the key name.
- Click Add.