GET | /clients | Get all clients |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
State | query | ClientState | No | Filter the results to those that have a State matching the state specified |
IsValidateMe | query | bool? | No | Filter the results to those that have a IsValidateMe flag matching the specified value |
Name | query | string | No | Filter the results to those that have a Name including the specified value |
DateFrom | query | DateTime | No | Filter the results to those that were created after (or on) this date |
DateTo | query | DateTime | No | Filter the results to those that were created before this date |
SubUserName | query | string | No | If the searches are being accessed by a sub user, specify their username here to only return searches they have permissions to view |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
PageLimit | query | int | No | The maximum number of records to be returned in one page |
PageOffset | query | int | No | The starting point in the list of records from where the data should be fetched. Zero based index. |
Sort | query | string | No | The term to determine the order in which the data is returned |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Authentication | header, body | Authentication | Yes | The authentication credentials |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ApiUserId | header, body | string | Yes | The API User ID provided by us when you signed up to use our API |
ApiUserKey | header, body | string | Yes | The API User Key provided by us when you signed up to use our API |
Undefined | |
PendingCompletion | |
PendingOcr | |
PendingVerification | |
Verified |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Data | form | GetClientsData | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Clients | form | ArrayOfClientShort | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Meta | form | Meta<T> | No | The response Metadata |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ResponseStatus | form | ResponseStatus | No | The status of the response |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ErrorCode | form | string | No | |
Message | form | string | No | |
StackTrace | form | string | No | |
Errors | form | ArrayOfResponseError | No | |
Meta | form | Dictionary<string, string> | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ErrorCode | form | string | No | |
FieldName | form | string | No | |
Message | form | string | No | |
Meta | form | Dictionary<string, string> | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Links | form | MetaLinks | No | Pagination links |
TotalCount | form | int? | No | The total number of records for the query |
PageLimit | form | int? | No | The maximum number of records to be returned in one page |
PageOffset | form | int? | No | The starting point in the list of records from where the data should be fetched. Zero based index. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
First | form | string | No | The link to the first page of records |
Last | form | string | No | The link to the last page of records |
Next | form | string | No | The link to the next page of records, if applicable |
Prev | form | string | No | The link to the last page of records, if applicable |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Self | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | |
DateCreated | form | DateTime | No | |
Name | form | string | No | |
Reference | form | string | No | |
IsValidateMe | form | bool | No | |
State | form | ClientState | No | |
Links | form | Links | No | |
NumOfDocuments | form | int | No | |
Photo | form | Image | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | |
Name | form | string | No | |
OcrId | form | int? | No | |
Url | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /clients HTTP/1.1 Host: api.sanctionssearch.com Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <GetClientsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <Data> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <Meta xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d6p1:KeyValueOfstringstring> <d6p1:Key>String</d6p1:Key> <d6p1:Value>String</d6p1:Value> </d6p1:KeyValueOfstringstring> </Meta> </ResponseError> </Errors> <Meta xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:KeyValueOfstringstring> <d4p1:Key>String</d4p1:Key> <d4p1:Value>String</d4p1:Value> </d4p1:KeyValueOfstringstring> </Meta> </ResponseStatus> <Meta> <Links> <Self>String</Self> <First>String</First> <Last>String</Last> <Next>String</Next> <Prev>String</Prev> </Links> <PageLimit>0</PageLimit> <PageOffset>0</PageOffset> <TotalCount>0</TotalCount> </Meta> <Clients> <ClientShort> <DateCreated>0001-01-01T00:00:00</DateCreated> <Id>0</Id> <IsValidateMe>false</IsValidateMe> <Links> <Self>String</Self> </Links> <Name>String</Name> <NumOfDocuments>0</NumOfDocuments> <Photo> <Id>0</Id> <Name>String</Name> <OcrId>0</OcrId> <Url>String</Url> </Photo> <Reference>String</Reference> <State>Undefined</State> </ClientShort> </Clients> </Data> </GetClientsResponse>