POST api/project/getprojectList
Request Information
URI Parameters
None.
Body Parameters
normal_protected_request| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| customer_id | string |
None. |
|
| product_key_registration_id | string |
None. |
|
| user_type | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"customer_id": "sample string 2",
"product_key_registration_id": "sample string 3",
"user_type": 4
}
application/xml, text/xml
Sample:
<normal_protected_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> <product_key_registration_id>sample string 3</product_key_registration_id> <token>sample string 1</token> <user_type>4</user_type> </normal_protected_request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
get_project_response| Name | Description | Type | Additional information |
|---|---|---|---|
| project_list | Collection of project_list |
None. |
|
| success | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"project_list": [
{
"project_id": 1,
"project_name": "sample string 2",
"project_description": "sample string 3",
"project_status": "sample string 4",
"project_value": "sample string 5",
"project_start_on": "sample string 6",
"project_end_on": "sample string 7"
},
{
"project_id": 1,
"project_name": "sample string 2",
"project_description": "sample string 3",
"project_status": "sample string 4",
"project_value": "sample string 5",
"project_start_on": "sample string 6",
"project_end_on": "sample string 7"
}
],
"success": true,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<get_project_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>
<project_list>
<project_list>
<project_description>sample string 3</project_description>
<project_end_on>sample string 7</project_end_on>
<project_id>1</project_id>
<project_name>sample string 2</project_name>
<project_start_on>sample string 6</project_start_on>
<project_status>sample string 4</project_status>
<project_value>sample string 5</project_value>
</project_list>
<project_list>
<project_description>sample string 3</project_description>
<project_end_on>sample string 7</project_end_on>
<project_id>1</project_id>
<project_name>sample string 2</project_name>
<project_start_on>sample string 6</project_start_on>
<project_status>sample string 4</project_status>
<project_value>sample string 5</project_value>
</project_list>
</project_list>
<success>true</success>
</get_project_response>