GET api/Import/CustomImport/Get/{importGUID}
Gets all information about a custom import
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| importGUID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Status message
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": "2025-12-18T15:13:06.2133715+00:00",
"ImportStatus": 3,
"DateImported": "2025-12-18T15:13:06.2133715+00:00",
"Detail": "sample string 4",
"Rows": 1,
"Progress": 1,
"DateImportStarted": "2025-12-18T15:13:06.2133715+00:00",
"DateImportFinished": "2025-12-18T15:13:06.2133715+00:00",
"Disabled": true,
"ImportFormatVersion": "2025-12-18T15:13:06.2133715+00:00",
"IsPartial": true,
"Guid": "ff3b02aa-b297-4c0a-9fa0-c4141edcee35",
"FileData": "QEA=",
"DocumentId": "bc1c72c2-bea7-4438-a2e5-58bbe942ad29",
"PayrollId": "58504198-3e12-47b3-b851-81207e7501ef",
"SheetIds": [
"5ade64aa-4fd0-419a-b386-2a1096950eec",
"e2393b1d-dadd-4633-a514-5f55460d424c"
]
}
application/xml, text/xml
Sample:
<ImportDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServicesRESTful.Models">
<DateCreated>2025-12-18T15:13:06.2133715+00:00</DateCreated>
<DateImportFinished>2025-12-18T15:13:06.2133715+00:00</DateImportFinished>
<DateImportStarted>2025-12-18T15:13:06.2133715+00:00</DateImportStarted>
<DateImported>2025-12-18T15:13:06.2133715+00:00</DateImported>
<Detail>sample string 4</Detail>
<Disabled>true</Disabled>
<DocumentId>bc1c72c2-bea7-4438-a2e5-58bbe942ad29</DocumentId>
<FileData>QEA=</FileData>
<FileName>sample string 1</FileName>
<Guid>ff3b02aa-b297-4c0a-9fa0-c4141edcee35</Guid>
<ImportFormat>sample string 2</ImportFormat>
<ImportFormatVersion>2025-12-18T15:13:06.2133715+00:00</ImportFormatVersion>
<ImportStatus>3</ImportStatus>
<IsPartial>true</IsPartial>
<PayrollId>58504198-3e12-47b3-b851-81207e7501ef</PayrollId>
<Progress>1</Progress>
<Rows>1</Rows>
<SheetIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:guid>5ade64aa-4fd0-419a-b386-2a1096950eec</d2p1:guid>
<d2p1:guid>e2393b1d-dadd-4633-a514-5f55460d424c</d2p1:guid>
</SheetIds>
</ImportDetail>