POST api/SpecialMedicalRequest/{token}
Post special medical request information and responses to the specified tour search
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
Required |
Body Parameters
The special medical request input parameters
Collection of Collection of stringRequest Formats
application/json, text/json
Sample:
[
[
"sample string 1",
"sample string 2"
],
[
"sample string 1",
"sample string 2"
]
]
Response Information
Resource Description
SpecialMedicalRequestResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
None. |
| response |
The response object |
Collection of Collection of string |
None. |
| status |
The response status |
ResponseStatus |
None. |
| success |
An indication that the request was successfully completed or failed |
boolean |
None. |
| datestamp |
The date and time that the request was completed |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"response": [
[
"sample string 1",
"sample string 2"
],
[
"sample string 1",
"sample string 2"
]
],
"status": {
"code": 1,
"message": "sample string 2"
},
"success": true,
"datestamp": "2026-08-03T20:39:24.9607005+01:00"
}