[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:
  • IT: Italian
  • EN: English
  • DE: German
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.
  • Title: title of the category of speakers (Type: string)
  • Description: description of the category of speakers (Type: string)
  • Spokes: list of informations of a speaker (Type: array)
Array
News List of newss related to the event.
  • Title: title of the news (Type: string)
  • Description: description of the news (Type: string)
  • Date: date of news (Type: date yyyy-mm-dd hh:mm:ss)
  • Signature: news' author signature (Type: string)
  • Link: link to the news (Type: string)
  • Image_small: small version of the image (Type: string)
  • Image_medium: medium version of the image (Type: string)
  • Image_large: large version of the image (Type: string)
Array
Gallery List of newss related to the event.
  • Title: title of the gallery (Type: string)
  • Photos: list of photos of a gallery (Type: array)
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 Facebook profile of the speaker String
Instagram Instagram profile of the speaker String
Linkedin Linkedin profile of the speaker String
Medium Medium profile of the speaker String
Twitter 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"
}