API documentation
[GET] Organizations > Event
API version 1.0
Overview
This API returns all the datas on iPress related to a specific brand event.
All organizations API:
Request Link
GET: https://api.ipresslive.it/v1.0/organizations/events/read/
Request Parameters
Name | Description | Required |
---|---|---|
token | APIKEY (40-character alphanumeric string) that allows access to the API. | Yes |
lng |
Language in which the results will be returned.
Default value: IT Possible values:
|
No |
Request Example
GET: https://api.ipresslive.it/v1.0/organizations/events/read/?token={YOUR_APIKEY}&lng={LANGUAGE_CODE}
Response Elements
Name | Description | Type |
---|---|---|
Organization | Organization name | String |
Title | Title of the speaker | String |
Description | Description of the speaker | String |
Link | Link to the event | String |
Banner | Facebook profile of the speaker | String |
Speaker |
List of the speakers at the event.
|
Array |
News |
List of newss related to the event.
|
Array |
Gallery |
List of newss related to the event.
|
Array |
Response Elements: Spoke
Name | Description | Type |
---|---|---|
Name | Name of the speaker | String |
Surname | Surname of the speaker | String |
Role | Role of the speaker | String |
Image | Image of the speaker | String |
Link | Link to the speaker profile | String |
ShortDescription | Short description of the speaker | String |
FullDescription | Full description of the speaker | String |
Website | Website of the speaker | String |
Facebook profile of the speaker | String | |
Instagram profile of the speaker | String | |
Linkedin profile of the speaker | String | |
Medium | Medium profile of the speaker | String |
Twitter profile of the speaker | String |
Response Elements: Photos
Name | Description | Type |
---|---|---|
Small | Small version of the image | String |
Medium | Medium version of the image | String |
Large | Large version of the image | String |
Caption | Caption of the image | String |
Response Example
[
{
"Organization": "iPress Live",
"Title": "Lorem ipsum",
"Description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
"Link": "https://www.ipresslive.it/ipress/event/view/0000/",
"Banner": "https://s3.amazonaws.com/iprs/files/events/header/00000/file-name__L.png",
"Speaker": [
{
"Title": "Spoke",
"Description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
"Spokes": [
{
"Name": "John",
"Surname": "Smith",
"Role": "Influencer",
"Image": "https://www.ipresslive.it/ipress/_conversion_oldurl/foto_people.php?s=0000",
"Link": "https://www.ipresslive.it/it/ipress/spokeperson/view/0000/",
"ShortDescription": "Lorem ipsum dolor sit amet...",
"FullDescription": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
"Website": "https://www.johnsmith.it/",
"Facebook": "https://www.facebook.com/john.smith",
"Instagram": "https://www.instagram.com/john.smith/",
"Linkedin": "https://www.linkedin.com/in/john-smith/",
"Medium": "https://johnsmith.medium.com/",
"Twitter": "https://twitter.com/johnsmith"
},
...
]
},
...
],
"News": [
{
"Title": "Lorem ipsum",
"Description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
"Date": "2022-01-01 12:30:00",
"Signature": "John Smith",
"Link": "https://www.ipresslive.it/it/ipress/comunicati/view/0000/",
"Image_small": "https://s3.amazonaws.com/iprs/files/images/00000/file-name__S.jpg",
"Image_medium": "https://s3.amazonaws.com/iprs/files/images/00000/file-name__M.jpg",
"Image_large": "https://s3.amazonaws.com/iprs/files/images/00000/file-name__L.jpg"
},
...
],
"Gallery": [
{
"Title": "Lorem ipsum",
"Photos": [
{
"Small": "https://s3.amazonaws.com/iprs/files/images/00000/file-name__S.jpg",
"Medium": "https://s3.amazonaws.com/iprs/files/images/00000/file-name__M.jpg",
"Large": "https://s3.amazonaws.com/iprs/files/images/00000/file-name__L.jpg",
"Caption": "Lorem ipsum dolor sit amet"
},
...
]
}
]
},
...
]
Response Errors
Code | Description |
---|---|
404 | Not found: invalid request |
401 | Unauthorized: APIKEY entered invalid or no longer enabled |
Response Errors Example
{
"responseCode": "404",
"responseMessage": "Not found"
}