POST api/service/get_service_banner_video
Request Information
URI Parameters
None.
Body Parameters
service_banner_video_request| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| service_id | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"service_id": "sample string 2"
}
application/xml, text/xml
Sample:
<service_banner_video_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <service_id>sample string 2</service_id> <token>sample string 1</token> </service_banner_video_request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
service_banner_video_response| Name | Description | Type | Additional information |
|---|---|---|---|
| service_banner_video_list | Collection of service_banner_video_list |
None. |
|
| success | boolean |
None. |
|
| message | string |
None. |
|
| IsVideo | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"service_banner_video_list": [
{
"url": "sample string 1",
"order": 2
},
{
"url": "sample string 1",
"order": 2
}
],
"success": true,
"message": "sample string 2",
"IsVideo": true
}
application/xml, text/xml
Sample:
<service_banner_video_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
<IsVideo>true</IsVideo>
<message>sample string 2</message>
<service_banner_video_list>
<service_banner_video_list>
<order>2</order>
<url>sample string 1</url>
</service_banner_video_list>
<service_banner_video_list>
<order>2</order>
<url>sample string 1</url>
</service_banner_video_list>
</service_banner_video_list>
<success>true</success>
</service_banner_video_response>