GET api/Videos/{id}?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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:17.363926-04:00",
"ModifiedDate": "2025-12-05T23:43:17.363926-04:00",
"sequence_id": 1
}
application/xml, text/xml
Sample:
<Videos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaxSalesApi.Models"> <CreatedDate>2025-12-05T23:43:17.363926-04:00</CreatedDate> <Id>1</Id> <ModifiedDate>2025-12-05T23:43:17.363926-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>