GET performances

URL

https://s3.amazonaws.com/goeventweb-static.greencopper.com/<hash>/<project_tag>/data/<lang>/performances.json
(See common endpoint parameters)

Method

GET

Response format

JSON

{
  "SHOW_ID": {
    "PERFORMANCE_ID": {
	  "_id": XXXX,
	  "artist": {
		"_id": XXXX,
		"title: XXXX
	  },
	  "date_end": XXXX,
	  "date_start": XXXX,
	  "sort_order": XXXX,
	  "time_end": XXXX,
	  "time_start: XXXX
	}
  }
}


Response sample

{
  "50": {
    "52": {
      "_id": 52, 
      "artist": {
        "_id": 4, 
        "title": "Aramis"
      }, 
      "date_end": null, 
      "date_start": "2017-08-15", 
      "sort_order": null, 
      "time_end": null, 
      "time_start": "12:00:00"
    }
  }, 
  "51": {
    "53": {
      "_id": 53, 
      "artist": {
        "_id": 4, 
        "title": "Aramis"
      }, 
      "date_end": null, 
      "date_start": "2017-08-16", 
      "sort_order": null, 
      "time_end": null, 
      "time_start": "14:00:00"
    }
  }
}