API REFERENCE
Beta
Query
Query your orders based on the provided criteria.
curl -X POST https://api.pointservices.com/riskinsight-services-ws/resources/v1/orders/query
-H "Authorization: Bearer your_access_token_here"
-H "Content-Type: application/json"
-d '{
"limit": 100,
"marker": "",
"filters": {
"Created": {"ge":"2024-04-09T18:42:22.705Z","le":"2024-04-10T18:42:22.712Z"}
}
}'
Header Properties
| Property | Value | Required? |
|---|---|---|
| Content-Type | application/json | false |
| Accept | application/json | false |
Request Data Properties
| Property | Description | Type | Default |
|---|---|---|---|
| limit | (optional) Max number of results to return in the response. Limit will be restricted to 100 if the value given is larger than 100 or less than 1. | number | 100 |
| marker | (optional) From where to start returning the next sequence of searches. | string | |
| filters | (optional) Filters to apply to the query. See below for the DSL. | object |
Filter Data DSL
Query DSL Comparison Operators
Filter expressions support eq, ne, in, gt, lt, ge, le, startsWith and startsWithIgnoreCase
eqrepresents equalsnerepresents not equalsinrepresents a list of values that a property can begtrepresents that a property should be greater than the supplied valueltrepresents that a property should be less than the supplied valuegerepresents that a property should be greater or equal to the supplied valuelerepresents that a property should be less than or equal to the supplied valuestartsWithrepresents that a property should begin with the supplied valuestartsWithIgnoreCaserepresents that a property should begin with the supplied value and case is not important
Query DSL Supported Properties
Completed: Date and Time the order was completed. Supports comparison operatorseq, ne, in, gt, ge, lt, le, inCreated: Date and Time the order was created. Supports comparison operatorseq, ne, in, gt, ge, lt, le, inFulfilled: Date and Time the order was fulfilled. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseOrderGuid: Unique identifier for the order. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseOrderSummary: Summary of the order. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseOwnerCompanyName: Company name of the order owner. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseOwnerUserContactMechanism: Contact mechanism of the order owner. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseOwnerUserDisplayName: Display name of the order owner. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseProductDisplayName: Display name of the product that was ordered. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseProductType: Type of the product that was ordered. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseReferenceNumber: Reference number of the order. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseReportAvailable: Boolean value indicating if the report is available. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCaseStatus: Status of the order. Supports comparison operatorseq, ne, in, gt, ge, lt, le, in, startsWith, startsWithIgnoreCase
Supported Date and Time formats
yyyy-MM-dd'T'HH:mm:ss.SSS'Z'e.g.2022-04-11T10:30:00.000Zyyyy-MM-dd'T'HH:mm:ssZZe.g.2022-04-11T14:30:00+0200EEE, dd MMM yyyy HH:mm:ss Ze.g.Mon, 11 Apr 2022 10:30:00 -0400
It’s important to supply the timezone since the api will use the timezone to compare the date and time of the query.
| Code | Description |
|---|---|
| yyyy | four digit year, e.g. 2024 |
| MM | two digit month, e.g. 04 |
| dd | two digit day, e.g. 09 |
| ‘T’ | seperator between the date and time. Should always be [ T ] |
| HH | two digit hour in 24-time format, e.g. 14 (for 2pm) |
| mm | two digit minute, e.g. 04 |
| ss | two digit second, e.g. 05 |
| SSS | three digit nano seconds, e.g. 000 |
| ‘Z’ | exactly UTC (Zulu) time zone. Should always be [ Z ] |
| Z or ZZ | UTC offset, e.g -0400 |
| EEE | three char code for the day name of the week, e.g. Mon |
Example Queries
{"filters":{"ProductType":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductType":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Status":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReferenceNumber":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderSummary":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OrderGuid":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserDisplayName":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerUserContactMechanism":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"OwnerCompanyName":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ProductDisplayName":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"eq":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"ge":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"gt":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"in":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"le":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"lt":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Created":{"ne":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"eq":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"ge":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"gt":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"in":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"le":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"lt":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Fulfilled":{"ne":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"eq":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"ge":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"gt":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"in":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"le":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"lt":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"Completed":{"ne":"2024-04-09T18:41:20.000Z"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"eq":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"ge":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"gt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"in":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"le":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"lt":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"ne":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"startsWith":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"SourceAliases":{"startsWithIgnoreCase":"value"}},"limit":5,"marker":"aaa"}
{"filters":{"ReportAvailable":{"eq":"true"}},"limit":5,"marker":"aaa"}
{"filters":{"ReportAvailable":{"in":"true"}},"limit":5,"marker":"aaa"}
{"filters":{"ReportAvailable":{"ne":"true"}},"limit":5,"marker":"aaa"}
The following is an example of a search between two dates query that’s inclusive
{"filters":{"Created":{"ge":"2024-04-09T18:42:22.705Z","le":"2024-04-10T18:42:22.712Z"}},"limit":5,"marker":"aaa"}
The following is an example of a search between two dates query that’s exclusive
{"filters":{"Created":{"gt":"2024-04-09T18:42:22.705Z","lt":"2024-04-10T18:42:22.712Z"}},"limit":5,"marker":"aaa"}
Responses
200
| Property | Description | Type | Default |
|---|---|---|---|
| count | Total number of results returned in this request. If the count is less than limit there are no more results to return | number | 100 |
| limit | Echoed from the request or 100. If count is less than limit, then there are no more results to return | number | 100 |
| nextMarker | The marker to use in the next request to get the next set of results. If this property is absent, than that means that there is definitively no more results to return. However, if this value is present, than there is a possibility that there maybe more results to be returned. | string | |
| results | The list of orders returned. | array |
Example:
{
"count" : 100,
"limit" : 100,
"nextMarker" : "5705424597053369344",
"results" : [ {
"Completed" : "2024-02-05T20:49:44.000Z",
"Created" : "2024-02-05T20:49:42.000Z",
"Deleted" : false,
"Fulfilled" : "2024-02-05T20:49:42.000Z",
"OrderGuid" : "2992759493555823372",
"OrderSummary" : "Cyril Figgins",
"OwnerCompanyName" : "Bloggins Bank",
"OwnerUserContactMechanism" : "joe@blogginsbank.com",
"OwnerUserDisplayName" : "Bloggins, Joe",
"ProductDisplayName" : "ADV-AB-BeforeReconfirm",
"ProductType" : "ADV",
"ReferenceNumber" : "7058934124",
"ReportAvailable" : true,
"Status" : "complete"
}, ... ]
}
400
| Property | Description | Type | Default |
|---|---|---|---|
| message | String description of what went wrong | string |
Examples:
{
"message" : "Unsupported field: InvalidField"
}
{
"message" : "Unsupported operator: NotARealOperator for field: ReferenceNumber"
}