Search an event
Returns a single event based on the passed id
.
Paramaters​
id
- place in url​
Place the event id in the URL: event/ev_....
Code Example​
- NodeJS
GET - https://api.particlespace.com/api/v1/event/:id
var axios = require('axios');
const BEARER_TOKEN = 'SET_ME';
var config = {
method: 'get',
url: 'https://api.particlespace.com/api/v1/event/EVENT_ID_HERE',
headers: {
'Authorization': 'Bearer ' + BEARER_TOKEN
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});