BellaDati Technical Documentation : GET Data Source Executions

/api/dataSets/dataSources/:id/executions

List data sources for data set with the specified ID.

Resource Information

Parameters

Parameters

Detail

id

ID of the data source to fetch. You can find the ID in the response to /api/dataSets/:id/dataSources
Example: 123

Sample Request / Response

Using curl:

curl -H "Authorization: OAuth realm=\"https://service.belladati.com/\", oauth_consumer_key=\"myConsumer\", oauth_token=\"mh7an9dkrg59\", oauth_timestamp=\"135131231\", oauth_nonce=\"randomString\"" https://service.belladati.com/api/dataSets/dataSources/3435/executions

The JSON format response:

{
  "executions" : [
    {
      "id" : 54354564,
      "when" : "Mon, 16 Apr 2012 10:17:26 GMT",
      "createdBy" : "John Smith",
      "overwrittingPolicy" : "DELETE_ALL",
      "repeateInterval" : "CUSTOM",
      "repeateIntervalCustom" : 30
    }
  ],
}