Get the value of an argument submitted in the current request.
argument-value name [type]
Returns the value of the search argument or post argument that matches the name, if any. The name should preferably be a keyword or optionally a string.
The optional type specifies the format of the returned value. The function by default returns a string. The type can be any of the following:
(define-entity answer ()
"The value of a submitted field labeled 'answer'"
(argument-value "answer"))
(multiple-value-bind (a b c)
(argument-value :choices 'values))
Interaction Developer Reference