Appearance
Basic Auth
Basic Auth allows you to set a username and password required to use the endpoint. Once set, the password will not be viewable again for security reasons.
Include the credentials in endpoint calls using the Authorization header with a Base64 encoded username and password separated by a single colon :.
For example, if you use Aladdin as the username and open sesame as the password, the header value is the Base64 encoding of Aladdin:open sesame, or QWxhZGRpbjpvcGVuIHNlc2FtZQ==.
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==