Endpoints
✅Installations
Gets information about all the locations which enabled your marketplace application
GET
/
api
/
apps
/
marketplaceApplications
/
installations
✅Installations
curl --request GET \
--url https://spaces.nexudus.com/api/apps/marketplaceApplications/installations \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://spaces.nexudus.com/api/apps/marketplaceApplications/installations"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://spaces.nexudus.com/api/apps/marketplaceApplications/installations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authentication
This endpoint requires OAuth2 authentication. Include a valid bearer token in the
Authorization header.Query Parameters
string
required
The unique id of your marketplace application.
Response
Example Response
[
{
"location_name": "Central Coworks",
"location_id": "d4cb499b-ec2c-4208-ae9f-3699ed4e210e",
"accept_bookings": false,
"accept_event_signups": false,
"accept_payment_requests": false,
"provide_resource_rrices": false,
"provide_resources": false,
"provide_events": false,
"provide_products": false,
"provide_tariffs": false,
"calendar_url": "https://spaces.nexudus.com/api/apps/marketplaceapplications/calendar?marketplace_id=78d4f2ac-e3a1-42ef-9158-b7df3c765ada&location_id=d4cb499b-ec2c-4208-ae9f-3699ed4e210e",
"feed_url": "https://spaces.nexudus.com/api/apps/marketplaceapplications/feed?marketplace_id=78d4f2ac-e3a1-42ef-9158-b7df3c765ada&location_id=d4cb499b-ec2c-4208-ae9f-3699ed4e210e"
}
]
Example Request
curl -X GET \
"https://spaces.nexudus.com/api/apps/marketplaceApplications/installations" \
-H "Authorization: Bearer YOUR_TOKEN"
Was this page helpful?
⌘I
✅Installations
curl --request GET \
--url https://spaces.nexudus.com/api/apps/marketplaceApplications/installations \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://spaces.nexudus.com/api/apps/marketplaceApplications/installations"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://spaces.nexudus.com/api/apps/marketplaceApplications/installations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));