Summary
Base64 to ASCII
Description
Convert Base64 to ASCII
Route
No Northbound API Available
Roles
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
input |
string |
yes |
- |
Copied to Clipboard
{
"input": "ZDA3MWFmMGUwZmRlOGVkOTVmN2E5OTI2MzdmYzgxNmI="
}
Copied to Clipboard
{
"type": "object",
"properties": {
"input": {
"title": "input",
"type": "string",
"examples": [
"ZDA3MWFmMGUwZmRlOGVkOTVmN2E5OTI2MzdmYzgxNmI="
]
}
},
"required": [
"input"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
string |
ASCII from converted Base64 |
Copied to Clipboard
"[object Object]"
Copied to Clipboard
{
"title": "response",
"type": "string",
"properties": {
"response": {
"type": "string",
"examples": [
"This is ASCII"
]
}
},
"examples": [
{
"response": "This is ASCII"
}
]
}