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