GET api/Videos?token={token}&lastsync={lastsync}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| lastsync | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Videos| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Titulo | string |
None. |
|
| URL | string |
None. |
|
| Timeframe | integer |
None. |
|
| Orden | integer |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| sequence_id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Titulo": "sample string 2",
"URL": "sample string 3",
"Timeframe": 1,
"Orden": 1,
"CreatedDate": "2025-12-05T23:43:02.4573354-04:00",
"ModifiedDate": "2025-12-05T23:43:02.4573354-04:00",
"sequence_id": 1
},
{
"Id": 1,
"Titulo": "sample string 2",
"URL": "sample string 3",
"Timeframe": 1,
"Orden": 1,
"CreatedDate": "2025-12-05T23:43:02.4573354-04:00",
"ModifiedDate": "2025-12-05T23:43:02.4573354-04:00",
"sequence_id": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfVideos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaxSalesApi.Models">
<Videos>
<CreatedDate>2025-12-05T23:43:02.4573354-04:00</CreatedDate>
<Id>1</Id>
<ModifiedDate>2025-12-05T23:43:02.4573354-04:00</ModifiedDate>
<Orden>1</Orden>
<Timeframe>1</Timeframe>
<Titulo>sample string 2</Titulo>
<URL>sample string 3</URL>
<sequence_id>1</sequence_id>
</Videos>
<Videos>
<CreatedDate>2025-12-05T23:43:02.4573354-04:00</CreatedDate>
<Id>1</Id>
<ModifiedDate>2025-12-05T23:43:02.4573354-04:00</ModifiedDate>
<Orden>1</Orden>
<Timeframe>1</Timeframe>
<Titulo>sample string 2</Titulo>
<URL>sample string 3</URL>
<sequence_id>1</sequence_id>
</Videos>
</ArrayOfVideos>