GET api/Import/CustomImport/Ready/{date}
Get all uploaded files that are ready to be imported after date (optional)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| date | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Status message
Collection of ImportDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName |
FileName with extension |
string |
Required |
| ImportFormat |
Custom Import Name |
string |
Required |
| DateCreated | date |
Nullable |
|
| ImportStatus |
Pending = 0, Validated = 1, Imported = 2, Error = 3, Importing = 4 |
integer |
None. |
| DateImported | date |
Nullable |
|
| Detail | string |
None. |
|
| Rows |
How many rows are in the import. |
integer |
Nullable |
| Progress |
The progress of the import. |
integer |
Nullable |
| DateImportStarted | date |
Nullable |
|
| DateImportFinished | date |
Nullable |
|
| Disabled |
Indicates whether the import has been disabled (Timeout, etc.) |
boolean |
None. |
| ImportFormatVersion | date |
Nullable |
|
| IsPartial |
Indicates whether the import is a partial import. |
boolean |
None. |
| Guid |
Unique GUID of the Import |
globally unique identifier |
Nullable |
| FileData |
Byte Array of file data - used in import |
Collection of byte |
None. |
| DocumentId | globally unique identifier |
None. |
|
| PayrollId | globally unique identifier |
Nullable |
|
| SheetIds | Collection of globally unique identifier |
Nullable |
Response Formats
application/json, text/json
Sample:
[
{
"FileName": "sample string 1",
"ImportFormat": "sample string 2",
"DateCreated": "2026-06-26T07:08:38.6994583+01:00",
"ImportStatus": 3,
"DateImported": "2026-06-26T07:08:38.6994583+01:00",
"Detail": "sample string 4",
"Rows": 1,
"Progress": 1,
"DateImportStarted": "2026-06-26T07:08:38.6994583+01:00",
"DateImportFinished": "2026-06-26T07:08:38.6994583+01:00",
"Disabled": true,
"ImportFormatVersion": "2026-06-26T07:08:38.6994583+01:00",
"IsPartial": true,
"Guid": "ff3aa9bd-13df-4b54-b4ce-d8067f2bc033",
"FileData": "QEA=",
"DocumentId": "f5a4a2ba-5283-4994-bf31-55e0f13036dd",
"PayrollId": "ad995ca8-13c1-4034-a41f-404cbc514dcc",
"SheetIds": [
"a6774e70-1f8a-4812-8d77-18f7317f2382",
"74bf7170-0946-47e9-a211-6b54546609d7"
]
},
{
"FileName": "sample string 1",
"ImportFormat": "sample string 2",
"DateCreated": "2026-06-26T07:08:38.6994583+01:00",
"ImportStatus": 3,
"DateImported": "2026-06-26T07:08:38.6994583+01:00",
"Detail": "sample string 4",
"Rows": 1,
"Progress": 1,
"DateImportStarted": "2026-06-26T07:08:38.6994583+01:00",
"DateImportFinished": "2026-06-26T07:08:38.6994583+01:00",
"Disabled": true,
"ImportFormatVersion": "2026-06-26T07:08:38.6994583+01:00",
"IsPartial": true,
"Guid": "ff3aa9bd-13df-4b54-b4ce-d8067f2bc033",
"FileData": "QEA=",
"DocumentId": "f5a4a2ba-5283-4994-bf31-55e0f13036dd",
"PayrollId": "ad995ca8-13c1-4034-a41f-404cbc514dcc",
"SheetIds": [
"a6774e70-1f8a-4812-8d77-18f7317f2382",
"74bf7170-0946-47e9-a211-6b54546609d7"
]
}
]
application/xml, text/xml
Sample:
<ArrayOfImportDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServicesRESTful.Models">
<ImportDetail>
<DateCreated>2026-06-26T07:08:38.6994583+01:00</DateCreated>
<DateImportFinished>2026-06-26T07:08:38.6994583+01:00</DateImportFinished>
<DateImportStarted>2026-06-26T07:08:38.6994583+01:00</DateImportStarted>
<DateImported>2026-06-26T07:08:38.6994583+01:00</DateImported>
<Detail>sample string 4</Detail>
<Disabled>true</Disabled>
<DocumentId>f5a4a2ba-5283-4994-bf31-55e0f13036dd</DocumentId>
<FileData>QEA=</FileData>
<FileName>sample string 1</FileName>
<Guid>ff3aa9bd-13df-4b54-b4ce-d8067f2bc033</Guid>
<ImportFormat>sample string 2</ImportFormat>
<ImportFormatVersion>2026-06-26T07:08:38.6994583+01:00</ImportFormatVersion>
<ImportStatus>3</ImportStatus>
<IsPartial>true</IsPartial>
<PayrollId>ad995ca8-13c1-4034-a41f-404cbc514dcc</PayrollId>
<Progress>1</Progress>
<Rows>1</Rows>
<SheetIds xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:guid>a6774e70-1f8a-4812-8d77-18f7317f2382</d3p1:guid>
<d3p1:guid>74bf7170-0946-47e9-a211-6b54546609d7</d3p1:guid>
</SheetIds>
</ImportDetail>
<ImportDetail>
<DateCreated>2026-06-26T07:08:38.6994583+01:00</DateCreated>
<DateImportFinished>2026-06-26T07:08:38.6994583+01:00</DateImportFinished>
<DateImportStarted>2026-06-26T07:08:38.6994583+01:00</DateImportStarted>
<DateImported>2026-06-26T07:08:38.6994583+01:00</DateImported>
<Detail>sample string 4</Detail>
<Disabled>true</Disabled>
<DocumentId>f5a4a2ba-5283-4994-bf31-55e0f13036dd</DocumentId>
<FileData>QEA=</FileData>
<FileName>sample string 1</FileName>
<Guid>ff3aa9bd-13df-4b54-b4ce-d8067f2bc033</Guid>
<ImportFormat>sample string 2</ImportFormat>
<ImportFormatVersion>2026-06-26T07:08:38.6994583+01:00</ImportFormatVersion>
<ImportStatus>3</ImportStatus>
<IsPartial>true</IsPartial>
<PayrollId>ad995ca8-13c1-4034-a41f-404cbc514dcc</PayrollId>
<Progress>1</Progress>
<Rows>1</Rows>
<SheetIds xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:guid>a6774e70-1f8a-4812-8d77-18f7317f2382</d3p1:guid>
<d3p1:guid>74bf7170-0946-47e9-a211-6b54546609d7</d3p1:guid>
</SheetIds>
</ImportDetail>
</ArrayOfImportDetail>