Differences

This shows you the differences between two versions of the page.

Link to this comparison view

api-uploadgroups [2017/02/03 09:32]
ben created
api-uploadgroups [2017/07/26 08:24]
Line 1: Line 1:
-====== API Upload Group Endpoints ====== 
  
-===== Get All Upload Groups ===== 
- 
-This Endpoint is used to get all Upload Groups in your Sentori Account. 
- 
-==== Endpoint ==== 
-|URI| <​nowiki>​https://​api.sentoriapp.com/​v2.0/​uploadgroups/</​nowiki>​| 
-|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|<​code javascript>​ 
-[ 
- { 
- "​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"​ 
- } 
-] 
-</​code>​|