GET api/EventDetail?ID_EVENTO={ID_EVENTO}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ID_EVENTO | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
EventDetailName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
TITLE | string |
None. |
|
LOCATION | string |
None. |
|
COMUNE | string |
None. |
|
START | date |
None. |
|
END | date |
None. |
|
DESCRIZIONE | string |
None. |
|
CATEGORIE | string |
None. |
|
DOCUMENTI | Collection of EventDocument |
None. |
Response Formats
application/json, text/json
Sample:
{ "ID": 1, "TITLE": "sample string 2", "LOCATION": "sample string 3", "COMUNE": "sample string 4", "START": "2024-10-07T00:41:54.6464882+02:00", "END": "2024-10-07T00:41:54.6464882+02:00", "DESCRIZIONE": "sample string 7", "CATEGORIE": "sample string 8", "DOCUMENTI": null }
application/xml, text/xml
Sample:
<EventDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NowTicket_API.Models"> <CATEGORIE>sample string 8</CATEGORIE> <COMUNE>sample string 4</COMUNE> <DESCRIZIONE>sample string 7</DESCRIZIONE> <DOCUMENTI i:nil="true" /> <END>2024-10-07T00:41:54.6464882+02:00</END> <ID>1</ID> <LOCATION>sample string 3</LOCATION> <START>2024-10-07T00:41:54.6464882+02:00</START> <TITLE>sample string 2</TITLE> </EventDetail>