Making an API Request
This section describes the structure of a REST API request, and uses the IAM API for obtaining a user token as an example to demonstrate how to call an API for obtaining a user token. The obtained token can then be used to authenticate requests for calling other APIs.
Request URI
A request URI consists of the following parts:
{URI-scheme}://{Endpoint}/{resource-path}?{query-string}
Parameter |
Description |
---|---|
URI-scheme |
Protocol used to transmit requests. All APIs use HTTPS. |
endpoint |
Domain name or IP address of the server bearing the REST service. The endpoint varies between services in different regions. It can be obtained from Regions and Endpoints. |
resource-path |
API access path for performing a specified operation. Obtain the path from the URI of an API. For example, the resource-path of the API used to obtain a user token is /v3/auth/tokens. |
query-string |
Query parameter, which is optional. Ensure that a question mark (?) is included before each query parameter that is in the format of "Parameter name=Parameter value". For example, ? limit=10 indicates that a maximum of 10 data records will be displayed. |
To simplify the URI display in this document, each API is provided only with a resource-path and a request method. The URI-scheme of all APIs is HTTPS, and the endpoints of all APIs in the same region are identical.
Request Method
The HTTP protocol defines the following request methods that can be used to send a request to the server.
Method |
Description |
---|---|
GET |
Requests a server to return specified resources. |
PUT |
Requests a server to update specified resources. |
POST |
Requests a server to add a resource or perform special operations. |
DELETE |
Requests a server to delete specified resources, for example, an object. |
HEAD |
Same as GET except that the server must return only the response header. |
PATCH |
Requests a server to update partial content of a specified resource. If the resource does not exist, the PATCH method creates a resource. |
For example, in the case of the API used to obtain a user token, the request method is POST. The request is as follows:
1
|
POST https://{Endpoint}/v3/auth/tokens |
Request Headers
You can also add additional header fields to a request, such as the fields required by a specified URI or HTTP method. For example, to request for the authentication information, add Content-Type, which specifies the request body type.
Table 3 describes common request headers need to be added to requests.
Name |
Description |
Mandatory |
Example |
---|---|---|---|
Content-Type |
Specifies the MIME type of the request body. |
Yes |
The default value is application/json. Other values will be described in the specific APIs. |
Content-Length |
Length of the request body. The unit is byte. |
|
3495 |
X-Auth-Token |
Specifies a user token. This field is mandatory when token authentication is used. User token is a response to the API for obtaining a user token (only this API does not require authentication). |
Yes |
- |
X-Language |
Request language type. |
No |
en-us |
For details about other headers, see the HTTP protocol.
The API used to obtain a user token does not require authentication. Therefore, only the Content-Type field needs to be added to requests for calling the API. An example of such requests is as follows:
1 2 |
POST https://{Endpoint}/v3/auth/tokens Content-Type: application/json |
Request Body
The body of a request is often sent in a structured format as specified in the Content-Type header field. If the request body contains full-width characters, these characters must be coded in UTF-8.
The request body varies between APIs. Some APIs do not require the request body, such as the APIs requested using the GET and DELETE methods.
In the case of the API used to obtain a user token, the request parameters and parameter description can be obtained from the API request. The following provides an example request with a body included. Replace username, domainname, ******** (login password), and projectname with the actual values. You can obtain a project name from Regions and Endpoints.
The scope parameter specifies where a token takes effect. You can set scope to an account or a project under an account. You can set scope to an account or a project under an account. For details, see Obtaining a User Token Through Password Authentication.
POST https://{Endpoint}/v3/auth/tokens Content-Type: application/json { "auth": { "identity": { "methods": [ "password" ], "password": { "user": { "name": "username", "password": "********", "domain": { "name": "domainname" } } } }, "scope": { "project": { "name": "projectname" } } } }
If all data required for the API request is available, you can send the request to call the API through curl, Postman, or coding. In the response to the API used to obtain a user token, x-subject-token is the desired user token. You can use the token to authenticate other API calls.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.