POST api/Validation/GetTrialList
Request Information
URI Parameters
None.
Body Parameters
trial_list_request| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| customer_id | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"customer_id": "sample string 2"
}
application/xml, text/xml
Sample:
<trial_list_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <customer_id>sample string 2</customer_id> <token>sample string 1</token> </trial_list_request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
trial_list_response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| trials | Collection of trial_info |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"trials": [
{
"trial_id": "sample string 1",
"start_date": "2025-12-21T07:54:44.8442996+04:00",
"product_name": "sample string 3",
"end_date": "2025-12-21T07:54:44.8442996+04:00",
"device_count": 1,
"branch_count": 1,
"is_activated": true
},
{
"trial_id": "sample string 1",
"start_date": "2025-12-21T07:54:44.8442996+04:00",
"product_name": "sample string 3",
"end_date": "2025-12-21T07:54:44.8442996+04:00",
"device_count": 1,
"branch_count": 1,
"is_activated": true
}
]
}
application/xml, text/xml
Sample:
<trial_list_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
<message>sample string 2</message>
<success>true</success>
<trials>
<trial_info>
<branch_count>1</branch_count>
<device_count>1</device_count>
<end_date>2025-12-21T07:54:44.8442996+04:00</end_date>
<is_activated>true</is_activated>
<product_name>sample string 3</product_name>
<start_date>2025-12-21T07:54:44.8442996+04:00</start_date>
<trial_id>sample string 1</trial_id>
</trial_info>
<trial_info>
<branch_count>1</branch_count>
<device_count>1</device_count>
<end_date>2025-12-21T07:54:44.8442996+04:00</end_date>
<is_activated>true</is_activated>
<product_name>sample string 3</product_name>
<start_date>2025-12-21T07:54:44.8442996+04:00</start_date>
<trial_id>sample string 1</trial_id>
</trial_info>
</trials>
</trial_list_response>