Get all bulk account uploads for user
This method gets the status of all bulk account uploads that the user performed.
Bulk account uploads are returned sorted by their creation time in descending order - from the most recent to the oldest. The bulk account uploads that are returned are ones that a specific user created and has authorization to view. |
URL
|
-
Make sure there are no spaces in the URL.
-
The following characters are not supported in URL values: + & %
-
If the URL includes a dot (.), add a forward slash (/) at the end of the URL. For example: api/Safes/MySafe/Members/user@cyber.com/
Resource information
HTTP method |
Content type |
---|---|
GET |
application/json |
Header parameter
Parameter |
Description |
---|---|
Authorization |
The token that identifies the session, encoded in BASE 64. See Authentication. Type: String Mandatory: Yes Default value: None |
URL parameters
Parameter |
Description |
---|---|
filter |
Filters according to REST standards. You can use the following filter:
Type: string Mandatory: no |
limit |
Limits according to REST Standards. You can use the following limit:
Type: number Mandatory: no |
Result
{ "Total": "4", "BulkActions": [ { "id": 4, "source": "sample.csv", "creationTime": 591093165, "status": "failed", "result": { "error": "server connection failed" } }, { "id": 3, "source": "sample3.csv", "creationTime": 1591093161, "status": "inProgress" }, { "id": 2, "source": "sample2.csv", "creationTime": 1591093074, "status": "completedSuccessfully", "result": { "succeeded": 3, "failed": 0 } }, { "id": 1, "source": sample.csv, "creationTime": 1591092699, "status": "completedWithErrors", "result": { "succeeded": 2, "failed": 1 } }, ] } |
Parameter |
Description |
---|---|
id |
The single identifier for the bulk action. Type: number |
source |
Free-text description of the source of the bulk account upload. Type: string |
creationTime |
The time the bulk action was created. Type: date-time |
status |
The possible statuses are:
Type: string |
result |
The result of the bulk action process.
Type: { succeeded: <sum>, failed: <sum> } { error: <error message> } |
Return codes
For a complete list of return codes, see Return Codes.