====== API Upload Group Endpoints ======
===== Get All Upload Groups =====
This Endpoint is used to get all Upload Groups in your Sentori Account.
==== Endpoint ====
|URI| https://api.sentoriapp.com/v2.0/uploadgroups/|
|Method| GET |
==== Response ====
|Field| Type|Description |
|ExternalID|string|ID of the Upload Group.|
|Name|string|Name of the Upload Group.|
|Description|string|Description of the Upload Group.|
|CreatedTimestamp|datetime|When the Upload Group was created.|
Example
[
{
"ExternalID": "12AB34CD",
"Name": "new signups.xls, Sheet1",
"Description":"Uploaded file \"new signups.xls\", Sheet \"Sheet1\" on Thu 1st Feb 2017 17:00",
"CreatedTimestamp":"2017-02-01T17:00:00.00"
},
{
"ExternalID": "1234ABCD",
"Name": "Members file.csv",
"Description": "Uploaded file \"Members file.csv\" on Thu 02 Feb 2017 09:00",
"CreatedTimestamp":"2017-02-02T09:00:00.00"
}
]