Back to Contents
Authentication and Authorization
Basic HTTP Authentication
Username and password must be provided in each request.
The username and password is provided by means of Basic HTTP Authentication.
Using a tool like Curl
curl -u <username>:<password> http://<server address>/rest1/entity/wells
HTTP Parameters
| Name | Type | Description |
|---|---|---|
| Authentication type | Basic | Authorization header with username and password encoded in BASE64 |
| username | string | User name to log in. |
| password | string | Password for provided user name. |