This method will return a list of all the saved documents within the account. The sub user's UserName can be supplied to specify which sub user the documents were created for, otherwise if null or empty it will show the documents requested by the main account.
Request Parameters
Parameter | Type | Format | Description |
---|---|---|---|
SubUserName | string | Null or max length 50 characters | If this is specified, only Saved Documents belonging/requested by this Sub User will be shown in the response, otherwise it will include the Saved Documents requested by the main user account. |
SanctionsSearchId | Nullable Int64 | Null or Int64 | If this is specified, Saved Documents with this specific Sanctions Search ID will be shown in the response, otherwise it will include Saved Documents with other specified Ids, or if no Ids are specified, all Saved Documents associated with the Sub User or Main User. |
PepSearchId | Nullable Int64 | Null or Int64 | If this is specified, Saved Documents with this specific Pep Search ID will be shown in the response, otherwise it will include Saved Documents with other specified Ids, or if no Ids are specified, all Saved Documents associated with the Sub User or Main User. |
ValidIdSearchId | Nullable Int32 | Null or Int32 | If this is specified, Saved Documents with this specific ValidId Search ID will be shown in the response, otherwise it will include Saved Documents with other specified Ids, or if no Ids are specified, all Saved Documents associated with the Sub User or Main User. |
CompanyLookupSearchId | Nullable Int32 | Null or Int32 | If this is specified, Saved Documents with this specific Company Lookup Search ID will be shown in the response, otherwise it will include Saved Documents with other specified Ids, or if no Ids are specified, all Saved Documents associated with the Sub User or Main User. |
Response Parameters
Parameter | Type | Format | Description |
---|---|---|---|
ResponseStatus | ResponseStatus | Instance of ResponseStatus object (see here) | |
Documents | Array | Instance of PdfDocument see below |
PdfDocument
Parameter | Type | Format | Description |
---|---|---|---|
Id | Int64 | The ID of the saved document | |
IsReady | Boolean | Is the document ready to download | |
Name | String | The name of the saved document | |
FileName | String | The file name (including extension) of the saved document | |
Type | String | The type of saved document (Human readable, pep, sanctions, validid, company lookup, etc.) | |
SanctionsSearchId | Nullable Int64 | The ID of the Sanctions Search | |
PepSearchId | Nullable Int64 | The ID of the PEP Search | |
ValidIdSearchId | Nullable Int32 | The ID of the ValidID Search | |
CompanyLookupSearchId | Nullable Int32 | The ID of the CompanyLookup Search | |
DateCreated | DateTime | The date the saved document was created/requested | |
DateExpires | DateTime | The date the saved document will be no longer available. You can request a new document using the SaveSearch, SavePepSearch, etc. methods |