Base64 Encode
Returns the base64 encoded string.
Request
Url: /api/utilities/base64-encode
Method: GET
,POST
Query Params/Form Params:
string
(required)api_key
(optional, see Authentication section below)
Headers
Header | Value | Notes |
---|---|---|
Content-Type | application/json | Required |
Authorization | Bearer <api_key> | Bearer Token authentication only |
Accept | application/json | Bearer Token authentication only |
Authentication
Depending on your system configuration, different methods of authentication may be required:
- None
- API Key
- Bearer
- IP Whitelisting
If you use API Key or Bearer authentication, you can generate API keys by visiting /user/api-tokens
in your Mission Control instance.
Click the user icon in the top right corner, then click
API Tokens
.
None
There is no authentication required. Useful when network security is handled by a firewall or other means.
API Key
Send a GET
query parameter or a POST
form parameter named api_token
.
Bearer Token
Send the token in the Authorization
header Authorization: Bearer <api_key>
You also need to set the Accept
header to application/json
IP Whitelisting
Configured on the server, IP whitelisting requires you to make request from an allowed IP address |
Response
Success
GET /api/utilities/base64-decode?string=Q2FsbFRoZW9yeQ==
A successful response will return a 200 OK
with the camel-cased JSON string as the body.
- HTTP Status Code: 200
"callTheory"
Failure
GET /api/utilities/base64-decode?string=notbase64
GET /api/utilities/base64-decode
An un-successful response will return a 400 Bad Request
with a description of the error.
- HTTP Status Code: 400
{
"error": "Missing required parameter: string"
}