Request

In a web application it is possible to have two kinds of requests: GET or POST

GET

"request": {
  "parameters": [
    { "type":"integer", "validation":"required|integer", "name":"id" }
  ]
}

The parameter can be one of the following types:

  • integer or long
  • string

If you want to know about the Validation check out the related page.

POST

"request": {
  "postparameters": [
    { "type":"long", "validation":"required|integer", "name":"idform" },
    { "type":"string", "validation":"alphanumerical", "name":"name" }
  ]
}

The parameter can be one of the following types:

  • integer or long
  • string

If you want to know about the Validation check out the related page.