Request
Request
In a web application it is possible to have two kinds of requests: GET or POST
GET
"request": {
"parameters": [
{ "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": [
{ "validation":"required|integer", "name":"idform" },
{ "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.