DX STF Client API

<back to all web services

SearchItemDataNotification

Item Data Notification Requests

Item Data Notification

Requires Authentication
The following routes are available for this service:
POST/api/itemDataNotification/searchSearch item data notification based on search parameters
SearchItemDataNotification Parameters:
NameParameterData TypeRequiredDescription
QuerymodelSearchItemDataNotificationQueryYesSearch query
SearchItemDataNotificationQuery Parameters:
NameParameterData TypeRequiredDescription
ReceiverGlnformstringYes
SenderGlnformstringYes
PartnerGlnformList<string>Yes
RequestedPageformintNo
NumberOfRecordsPerPageformintNo
ContinuationTokenformstringYes
CategoryCodeformstringYes
IdentifierformstringYes
TradeItemDescriptionformstringYes
GtinformstringYes
OrderByformstringYes
OrderformORDERNo
ORDER Enum:
ASC
DESC
PagedQueryResponseWithToken<T> Parameters:
NameParameterData TypeRequiredDescription
ContinuationTokenformstringYes
PagedQueryResult<T> Parameters:
NameParameterData TypeRequiredDescription
StartIndexformlongNo
EndIndexformlongNo
NumberOfRecordsReturnedformintNo
TotalNumberOfPagesformintNo
TotalNumberOfRecordsformlongNo
ResultsformList<ResultItem<ClaimMessage>>Yes

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /api/itemDataNotification/search HTTP/1.1 
Host: stf-api-uat.data-xchange.co.za 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	query: 
	{
		receiverGln: String,
		senderGln: String,
		partnerGln: 
		[
			String
		],
		requestedPage: 0,
		numberOfRecordsPerPage: 0,
		continuationToken: String,
		categoryCode: String,
		identifier: String,
		tradeItemDescription: String,
		gtin: String,
		orderBy: String,
		order: ASC
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	continuationToken: String,
	startIndex: 0,
	endIndex: 0,
	numberOfRecordsReturned: 0,
	totalNumberOfPages: 0,
	totalNumberOfRecords: 0,
	results: 
	[
		{
			
		}
	]
}