Pseudo code

Examples are written in pseudo code to illustrate the use of the control API commands. The pseudo code helps understanding which part of the control API command must be encoded and how. The list below shows the pseudo code functions used in the explanations and describes what they do:

Pseudo code functions:

  • URL_Encode("string"): This function illustrates that "string" must be URL encoded (percent-encoded).
  • BASE64_Encode("string"): This function illustrates that "string" must be Base64 encoded.
  • UTF8_Encode("string"): This function illustrates that "string" must be UTF-8 encoded.

Escape sequences:

  • \": Insert a double quote character in the text at this point.
  • \\: Insert a backslash character in the text at this point.

Special notation:

  • +: The operator + is used to concatenate strings.