API documentation
[GET] Organizations > Team
API version 1.0
Overview
This API returns all the datas on iPress related to a specific brand team.
All organizations API:
Request Link
GET: https://api.ipresslive.it/v1.0/organizations/team/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 |
id | Id of the requested element to get a single result | No |
Request Example
GET: https://api.ipresslive.it/v1.0/organizations/team/read/?token={YOUR_APIKEY}&lng={LANGUAGE_CODE}&id={ID}
Response Elements
Name | Description | Type |
---|---|---|
Organization | Organization name | String |
Id | Id of the organization member | Int |
Name | Name of the organization member | String |
Surname | Surname of the organization member | String |
Role | Role of the organization member | String |
ShortBiography | Short biography of the organization member | String |
FullBiography | Full biography of the organization member | String |
Image | Image of the organization member | String |
Link | Link of the organization member | String |
Website | Website of the organization | String |
Facebook page of the organization member | String | |
Instagram page of the organization member | String | |
Linkedin page of the organization member | String | |
Medium | Medium page of the organization member | String |
Twitter page of the organization member | String | |
Books |
List of informations about the books of the organization member.
|
Array |
Response Example
[
{
"Organization": "iPress Live",
"Id": "0000",
"Name": "John",
"Surname": "Smith",
"Role": "Lorem impsum dolor sit",
"ShortBiography": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
"FullBiography": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque mattis vestibulum consectetur...",
"Image": "https://www.ipresslive.it/ipress/spoke/viewPhoto.php?s=00000",
"Link": "https://www.ipresslive.it/it/ipress/spokeperson/view/00000/",
"Website": "https://www.ipresslive.it/",
"Facebook": "https://www.facebook.com/ipress/",
"Instagram": "https://www.instagram.com/ipress/",
"Linkedin": "https://www.linkedin.com/company/ipress/",
"Medium": "https://medium.com/@ipress",
"Twitter": "https://twitter.com/ipress",
"Books": [
{
"Category": "Lorem ipsum"
"ASIN": "0000000000"
"Title": "Lorem impsum dolor sit",
"Author": "John Smith",
"Image": "https://www.ipresslive.it/",
"Link": "https://www.ipresslive.it/"
},
...
]
},
...
]
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"
}