eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available...

19
eLOT Notice and Trade Unit Register Web API Guide Version 1.0

Transcript of eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available...

Page 1: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Version 1.0

Page 2: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 2 of 19

Table of Contents Version 1.0 ................................................................................................................................................ 1

Introduction .................................................................................................................................................. 3

Web API Versions .......................................................................................................................................... 3

Pre-requisites ................................................................................................................................................ 4

1. How to register Client on User Authentication Service (UAS) .......................................................... 4

2. How to Connect ................................................................................................................................ 4

2.1 Supported Formats ....................................................................................................................... 5

2.2 Code Snippets ............................................................................................................................... 5

Client Side Examples with AJAX ............................................................................................................ 5

2.3 Server Side Examples with C# ....................................................................................................... 8

Get AccessToken Method ..................................................................................................................... 8

Use Token to Call Endpoint Code .......................................................................................................... 9

3. Testing Web API End Points ................................................................................................................ 10

Swagger ................................................................................................................................................... 10

4. Available Endpoints ............................................................................................................................. 10

4.1 Get Access Token (POST) ............................................................................................................ 10

4.2 eLot Notice (POST) ...................................................................................................................... 11

4.3 Get Trade Unit Status (GET) ........................................................................................................ 14

4.4 Get Trade Unit By Verification Key (GET) .................................................................................... 15

4.5 Get Trade Units By eLot Key (GET) .............................................................................................. 16

4.6 Add Inspection Result (POST) ..................................................................................................... 16

4.7 Update Inspection Result (POST) ................................................................................................ 17

Application for TUR Web API Access ...................................................................................................... 19

Page 3: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 3 of 19

Introduction The Trade Unit Register (TUR) has been introduced as a central database in the official export

certification system to store relevant data around trade units (e.g. in the fruit industry this means data

relevant for pallets). This TUR concept replaces paper-based evidence to demonstrate compliance with

the export conditions, as users can now update and call upon the TUR to provide the required

confirmation.

The eLOT Notice step has been introduced in the certification process, and was included for two main

purposes. Firstly, the eLOT Notice is a means for trade unit data to be inserted into the TUR. Secondly,

once the data is received by the TUR the process of pre-verification can take place to ensure the product

has met the requirements (up to that point) to be able to be considered for certification. The objective is

to prevent defective product from entering the supply chain right at the start of the supply chain.

This guide discusses the eLotNotice API which is the web service to submit data directly to the TUR and

how to interpret the response received back from this service. Clients will also be shown how to call for

information from the TUR so they can track the status of trade units. The first sections of this document

are concerned with how to register and connect to these services, before going into more detail on each

of the API endpoints.

Web API Versions

There are three versions of the API that are presently available at the time and these are stated below:

Old- Soon to be deprecated

Stable – Current stable version

Beta-Latest Build

All requests are sent with the version of the API the consumer needs to call through a custom request header as below:

The current version of the API will be displayed on the API’s Swagger page. The swagger page will display the available endpoints depending on the selected version.

When a new version becomes available, notifications will be sent out to all the relevant parties with a change log of the new changes and features. The Swagger page will be updated accordingly with these new features.

Page 4: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 4 of 19

The links to the swagger pages are as follows:

PRODUCTION - http://tur.ecert.co.za/swagger TESTING - http://qa.tur.ecert.co.za/swagger

NB! The URLs have been published here to direct clients for future use. Clients will only obtain

meaningful responses back from the service from the 22nd August 2019, by which time supporting

functionality will have been implemented.

Pre-requisites The pre-conditions for a consuming system to be able to use the TUR Web APIs are as follows:

The consuming system must belong or be associated to a registered business in the Central Business Register (https://cbr.ecert.co.za/)

A client system calling the TUR system will need to be registered as a client in the User Authentication Service(UAS) and issued a valid client Id and client secret to be able to consume the endpoints (see section 1 below)

All request calls to the TUR will be authenticated using a JWT (Json Web token) bearer token over OAuth 2.0 protocol (see How To Connect section)

1. How to register Client on User Authentication Service (UAS)

To register as a new Client on the UAS, users will need to fill in a registration form (please see Appendix 1) which they will send to [email protected]. The fields to be filled in on the form are as follows:

First Name: First Name of Client contact

Last Name: Last Name of Client Contact

Company Name: Company Name for which the Client system belongs

Email Address: Email address of Contact

Phone Number: Contact phone number

Cell Number: Contact cell number

Once a Client has been registered successfully the contact person will receive a notification via email with the ClientId, Base64Secret and Authentication URL. The ClientId and Base64Secrets in turn will be used by the client to Authorise and get a token. With a valid token the client system can call any API endpoint on the TUR Web API provided all the required parameters are presented.

2. How to Connect As a registered client, you will receive a Client Id issued by the service provider which will be used to

authenticate each request. The client Id must be sent as part of the request in the Request Header as shown below: e.g. Client_Id: ‘a3acf7cf470b4d5fbb9fe6fd4b77c3a0’

Page 5: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 5 of 19

2.1 Supported Formats Messages (data) are delivered via two response types namely XML and JSON. In order to receive data in a specific format, you need to specify the content type in the response header as such: Content-Type: ‘application/xml’ Or Content-Type: ‘application/json’

2.2 Code Snippets

Client Side Examples with AJAX Below are example code snippets to illustrate how to call the TUR API endpoints using AJAX on the

Client side. The examples show how clients can specify which format they want to receive as a

response between Json and XML.

Page 6: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 6 of 19

Json Format <script> $(document).ready(function() { var clientId="ClientID_VALUE"; var base64Secret="Base64Secrets_VALUE"; var applicationRefNo="ApplicationRefNo_VALUE"; var authurl="Auth URL Here" var url="qa.tur.ecert.co.za/api/tradeunit/elotnotice";

$.ajax( {

//Call auntentication endpoint url: authurl, type: 'GET', dataType: 'json', headers: { 'ClientId': clientId, 'Base64Secret': base64Secret }, contentType: 'application/json; charset=utf-8', success: function (result,textStatus, xhr) { token=data.access_token;

//on sucessful authentication get API Data $.ajax({ url: url , type: 'POST', dataType: 'json', contentType: 'application/json', headers: { "Authorization": "bearer " + token, }, success: function (result) { console.log(result); }, error: function (xhrXmlHttpRequest, textStatus, error) { console.log('Error occured,please try again'); } });

}, error: function (xhrXmlHttpRequest, textStatus, error) { console.log("Error occured,please try again") } }); }) </script>

Page 7: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 7 of 19

XML Format <script> $(document).ready(function() { var clientId="ClientID_VALUE"; var base64Secret="Base64Secrets_VALUE"; var applicationRefNo="ApplicationRefNo_VALUE"; var authurl="Auth URL Here" var url="qa.tur.ecert.co.za/api/tradeunit/elotnotice";

$.ajax( {

//Call auntentication endpoint url: authurl, type: 'GET', dataType: 'json', headers: { 'ClientId': clientId, 'Base64Secret': base64Secret }, contentType: 'application/json; charset=utf-8', success: function (result,textStatus, xhr) { token=data.access_token;

//on sucessful authentication get API Data $.ajax({ url: url , type: 'POST', dataType: 'xml', contentType: 'application/xml', headers: { "Authorization": "bearer " + token, }, success: function (result) { console.log(result); }, error: function (xhrXmlHttpRequest, textStatus, er-

rorThrown) { console.log('Error occured,please try again'); } });

}, error: function (xhrXmlHttpRequest, textStatus, errorThrown) { console.log("Error occured,please try again") } }); }) </script>

Page 8: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 8 of 19

2.3 Server Side Examples with C# The examples below show C# code snippets of how a Client application can call the UAS Web API

authentication endpoint to get the access token and use it to call an authenticated endpoint on the

TUR Web API.

Get AccessToken Method public static async Task<string> GetWebAPIAccessToken()

{

var url = " Auth URL Here"

string clientId = "ClientId_VALUE";

string base64Secret = "Base64_VALUE";;

using (var client = new HttpClient(new HttpClientHandler()))

{

var request = new HttpRequestMessage()

{

RequestUri = new Uri(url),

Method = HttpMethod.Get,

Content = null

};

//clientId here

client.DefaultRequestHeaders.Add("ClientId", clientId);

//base64Secret here

client.DefaultRequestHeaders.Add("Base64Secret", base64Secret);

var response = await client.SendAsync(request);

var result = await response.Content.ReadAsStringAsync();

if (response.IsSuccessStatusCode == true)

{

//Deserialise to your token object

var token =JsonConvert.DeserializeObject<Token>(result);

return token.access_token;

}

}

//return null if client not authenticated

return "";

}

Page 9: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 9 of 19

Use Token to Call Endpoint Code public static async Task<Status> GeteLotNotice(string agreementCode) {

string accessToken = await GetWebAPIAccessToken(); eLotNotice = new eLotNotice();

//check if client is authenticated if(accessToken!=null) { using (var client = new HttpClient(new HttpClientHandler())) { var url = "qa.tur.ecert.co.za/api/tradeunit/elotnotice =" +

RefNo;

var request = new HttpRequestMessage() { RequestUri = new Uri(url), Method = HttpMethod.POST, Content = null }; // insert token here client.DefaultRequestHeaders.Add("Authorization", "Bearer "

+ accessToken); var response = await client.SendAsync(request); var result = await response.Content.ReadAsStringAsync();

if (response.IsSuccessStatusCode == true) {

eLotNotice=JsonConvert.DeserializeObject<Status>(result);

return eLotNotice; }

}

}

//return null if client not authenticated or request fails return null; }

Page 10: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 10 of 19

3. Testing Web API End Points To test the TUR Web API endpoints users can use 3rd party tools like Swagger or Postman. These tools

will help the users to get a feel of what the endpoint parameters look like as well as view the responses

in different formats. Below are screenshots to show how to test using both of the tools:

Swagger http://qa.tur.ecert.co.za/swagger (TESTING)

NB! This URL has been published here to direct clients for future use. Clients will only obtain

meaningful responses back from the service from the 22nd August 2019, by which time supporting

functionality will have been implemented.

4. Available Endpoints

4.1 Get Access Token (POST) This endpoint returns an oauth2 token that is used to interact with the API end points in the Trade Unit

Register. The access token value needs to be passed in the header of all Trade Unit Register endpoints as

a bearer token in order for the request to be authenticated.

Please Note: This end point is not part of the Trade Unit Register but is an endpoint in the User

Authentication Service.

Endpoint URL: https://uas.ecert.co.za/oauth2/token

Request Parameters

Parameter Name Required? DataType Example

base64_secret Yes string e.g. ed8gqxd8qtB6wYWxQLoDygaVjVq3crHZ8Xh30yghnzh

client_id Yes string e.g. a3acf7cf470b4d5fbb9fe6fd4b77c3a0

Response

Property Name

access_token

token_type

expires_in

refresh_token

Username

Client

.issued

.expires

Page 11: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 11 of 19

4.2 eLot Notice (POST) This eLot Notice web service must be used to submit trade unit data to the TUR. Pre-verification of the

trade units takes place and the pre-verification results returned to the client to end the call. A brief

description of how the key data elements are provided and how to interpret the response is discussed in

the table below.

The decision on when to actually submit the data depends on the client but must be before PPECB

quality inspections. Practically data should be submitted when there is certainty regarding the

completeness of the trade unit composition (i.e. it is unlikely to physically change) and the destination of

that product is known. The destination is important because the pre-verification process will run the

appropriate rules linked to that intended market. The intended market is communicated using the

AgreementCode element – which is linked to the Agreements eCertification standard.

IsTest: Client can also trigger the “IsTest” flag as a means to assess the suitability of that product for a

possible market without committing to it. The API will run in the same way and appropriate information

provided back in the response, but the trade unit data or results will not be stored in the TUR. If clients

definitely want to select that market based on a favourable test results the eLotNotice will have to be

re-submitted so that the data is added to the TUR and the pre-verification process can be formally

undertaken and the results stored.

IsUpdate: It has also been agreed that if the details for a trade unit subsequently change for whatever

reason (e.g. the intended market changes or the pallet is reconstituted) after an initial eLOT Notice or

even later in the supply chain, clients are obliged to update the TUR by calling the eLotNotice services

again. Clients must submit the revised information and use the “IsUpdate” flag so that the TUR will

recognize this information as a change to details for an existing trade unit.

TradeUnitID: Please note that for the fruit industry, it has been agreed that the trade unit identification

(i.e. the pallet id) must be in the GS1 format (i.e. SSCC). Trade Unit identification that does not use this

convention will not be successfully pre-verified which will result in the product not being certified. It is

expected other sectors will also likely use the GS1 standards.

Reference1: Is provided by the client. This Reference has been reserved for the Consignment Note

information in the fruit sector if it is known at eLOT Notice stage. This may be useful to track

consignment of trade units later.

Reference2: Is provided by the client. In the eLotNotice API this is an optional reference the client can

provide. Examples might be to flag pallets for other parties in their supply chain.

ExportDate: Is provided as the intended date of export. This is relevant when new phytosanitary rules

may apply and the system needs to know when the product will be exported so the correct rules are

used for pre-verifying. Practically, the current date can be used or the typical timeframe between

packing and departure of the product.

Page 12: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 12 of 19

Endpoint URL: http://qa.tur.ecert.co.za/api/TradeUnit/eLotNoticeRequest Parameters

Parameter Name

Description Object properties Req?

DataType Example

BusinessID Business identification from CBR database

Yes String 4

Industry Reference to which industry this TU is from

Yes String Fruit

AgreementCode Agreement code used for export market

Yes String AGM001

IsUpdate Whether the trade units are being updated or adding new ones

Yes Boolean true

IsTest Whether or not this is a test call

Yes Boolean false

TradeUnits A list of trade units (including trade unit detail) to add/update to the system and pre verify (array)

- TradeUnitID (string) - Industry (string) - BusinessID (string) - Reference1 (string) - Reference2 (string) - ExportDate (datetime) - TUDetail (array)

OperatorCode (string)

OriginLocation (string)

SPSStatus (string)

PackOperatorCode (string)

CommodityName (string)

ProductName (string)

ItemName (string)

ClassCategory (string)

Yes Object

- Pallet Number - Industry - CBR ID - Consignment Note Number - Client Reference - ExportDate -TUDetail

FBO Code

Orchard Name

PhytoData

PHC

Commodity

Product

Variety

Class Category

Number of cartons

Weight per pallet

Trade Unit Location

Page 13: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 13 of 19

NoSubUnits (number)

Weight (number)

TradeUnitLocation (string)

TradeUnitOrigin (string)

Trade Unit Origin

Response

Property Name

IsSuccessful

eLotKey

Message (array)

Data (array)

TradeUnitID

VerificationKey

ProcessStatus

ProcessResult (array)

RejectionReasons (array)

This section deals with a basic interpretation of the API response.

eLotKey is a unique TUR system generated reference linked to this API call for this set of trade units.

Message is an array of information returned as a summary of the information across all the trade units

in this eLotNotice. An example might be identifying the pallet with the “worst” phytosanitary status –

flagged as the determining status for the whole group of trade units.

VerificationKey is a unique system generated reference for this specific trade unit for this process.

ProcessStatus is the summary result of the process for this particular trade unit. The possible status

values for each process will be reflected in the eCertification standards, but in most cases will be either

“Pending”, “Passed” or “Failed”.

ProcessResult is an array of information per trade unit reflecting the performance against the underlying

export conditions being evaluated. Possible values in this array will depend on the process and the

underlying export conditions, and will correspond with the eCertification standard for Process Results.

Conceptually, this field is intended to replace, or be equivalent to, the existing “PhytoData” information.

The pallet is thus obtaining a certain phytosanitary status which then remains with that pallet.

RejectionReasons is an array of reasons why the trade unit has been found not to meet the underlying

export condition requirements. The list of reasons corresponds to the eCertification standard for

Rejection Reasons per process per agreement.

Examples of Rejection Reasons in the eLOT Notice process:

Variety Non-compliance

Marketing Indications Non-compliance

FBO PUC registration Non-compliance

Page 14: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 14 of 19

FBO PHC registration Non-compliance

Orchard registration Non-compliance

PUC count per pallet Non-compliance

FBO not recognized

Trade Unit Identifier Non-compliance

Example eLotNotice Response:

{

IsSuccessful: true,

eLotKey: "4BA1986",

Message: ["Message1", "Message2"],

Data: [{

TradeUnitID: "760016510576306003",

VerificationKey: "4CA1556",

ProcessStatus: "Passed",

ProcessResult: "EUA1A1FY",

RejectionReasons: []

}, {

TradeUnitID: "860016510576596003",

VerificationKey: "5RA1534",

ProcessStatus: "Failed",

ProcessResult: "0",

RejectionReasons: ["FBO PUC registration Non-compliance"]

}

]

}

4.3 Get Trade Unit Status (GET) Get status of Trade Units for each export process. If the results are required for specific export

processes, then the ExportProcess element can be used to specifying the export processes required.

Endpoint URL: http://qa.tur.ecert.co.za/api/TradeUnit/GetTradeUnitStatus

Request Parameters

Parameter Name Description Required? DataType Example

TradeUnitID Identify TU in the Trade Unit Register

Yes array [760016510576306003, 860016510576596003]

ExportProcess No array [eLOT, eCert, eInspect]

Response

Page 15: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 15 of 19

Property Name

TUID

Industry

AgreementCode

TradeUnitStatuses (array) ExportProcess (string)

ProcessStatus (string)

ProcessResult(array)

RejectionReasons(array)

Reference1(string)

Reference2(string)

UpdatedDateTime(datetime)

4.4 Get Trade Unit By Verification Key (GET) Get status of a Trade Unit by using the returned verificationkey.

Endpoint URL: http://qa.tur.ecert.co.za/api/TradeUnit/GetTradeUnitByVerificationKey

Request Parameters

Parameter Name Description Required? DataType Example

VerificationKey Verification key of the TU in the system

Yes string 4CA1556

ExportProcess No array [eLOT, eCert, eInspect]

Response

Property Name

TUID

Industry

AgreementCode

TradeUnitStatuses (array) ExportProcess (string)

ProcessStatus (string)

ProcessResult(array)

RejectionReasons(array)

Reference1(string)

Reference2(string)

UpdatedDateTime(datetime)

Page 16: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 16 of 19

4.5 Get Trade Units By eLot Key (GET) Get status of a Trade Units

Endpoint URL: http://qa.tur.ecert.co.za/api/TradeUnit/GetTradeUnitByeLotKey

Request Parameters

Parameter Name Description Required? DataType Example

eLotKey eLot key of the trade units in the system

Yes string 4CA1556

ExportProcess No array [eLot, eCert, eInspect]

Response

Property Name

object array TUID

Industry

AgreementCode

TradeUnitStatuses (array)

ExportProcess (string)

ProcessStatus (string)

ProcessResult(array)

RejectionReasons(array)

Reference1(string)

Reference2(string)

UpdatedDateTime(datetime)

4.6 Add Inspection Result (POST) This end point is relevant for official inspection bodies that can provide feedback on the inspection

status of trade units. For example, this endpoint is intended to be used by PPECB to submit PHC Quality

inspection results. Permissions will apply to ensure that only the correct institutions are adding or

updating inspection results.

Endpoint URL: http://qa.tur.ecert.co.za/api/TradeUnit/AddInspectionResult

Request Parameters

Parameter Name Description Required? Data Type

Example

TradeUnitID Identify TU in the Trade Unit Register

Yes string 860016510576596003

Industry Reference to which industry this TU is from

Yes string Fruit

Page 17: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 17 of 19

ExportProcess What process the trade unit is being involved in

Yes string eCert

ProcessStatus An indication of the status for the Agreement

Yes string Passed

ProcessResult The outcome of the process

Yes string 80

RejectionReasons Reason the process failed

Yes array Inappropriate Cartons

BusinessID Business identification from CBR database

Yes string 4

Reference1 Client Reference 1

No string XYZ123

Reference2 Client Reference 2

No string CL1234

Response

Property Name

IsSuccessful

Message

4.7 Update Inspection Result (POST) This end point is relevant for official inspection bodies that can provide feedback on the inspection

status of trade units. For example, this endpoint is intended to be used by PPECB to submit PHC Quality

inspection results. Permissions will apply to ensure that only the correct institutions are adding or

updating inspection results.

Endpoint URL: http://qa.tur.ecert.co.za/api/TradeUnit/UpdateInspectionResult

Request Parameters

Parameter Name Description Required? Data Type

Example

TradeUnitID Identify TU in the Trade Unit Register

Yes string 860016510576596003

Industry Reference to which industry this TU is from

Yes string Fruit

Page 18: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 18 of 19

ExportProcess What process the trade unit is being involved in

Yes string eCert

ProcessStatus An indication of the status for the Agreement

Yes string Passed

ProcessResult The outcome of the process

Yes string 80

RejectionReasons Reason the process failed

Yes array Inappropriate Cartons

BusinessID Business identification from CBR database

Yes string 4

Reference1 Client Reference 1

No string XYZ123

Reference2 Client Reference 2

No string CL1234

Response

Property Name

IsSuccessful

Message

Page 19: eLOT Notice and Trade Unit Register Web API GuideThe swagger page will display the available endpoints depending on the selected version. When a new version becomes available, notifications

eLOT Notice and Trade Unit Register Web API Guide

Page 19 of 19

APPENDIX 1

Application for TUR Web API Access

By completing and returning this form stakeholders in the SA export fruit industry can apply to make use of the Trade Unit Register (TUR) Application Programming Interface (API) in order to download or upload data from/onto the TUR platform.

This is a generic form and will allow access to generic, already publicly available data. Should information of a more confidential nature be required then additional agreements may need to be entered. The basis for sharing this information is that Department of Agriculture, Land Reform and Rural Development (DALRRD) (previously the Department of Agriculture, Forestry and Fisheries) require stakeholders in the supply chain to conduct pre-verification of relevant details before presenting their documentation for phytosanitary certification, and also to assist in the logistics and planning of fruit for Special Markets.

Contact Details

First name: ___________________________________________________

Last name: ___________________________________________________

Company Name: _______________________________________________

Email address: _________________________________________________

Phone number: ________________________________________________

Cell number: __________________________________________________

Declaration

I agree to use the information provided by Fruit South Africa for the purpose in which it was intended, and which is specifically aimed at supporting the official process of certification of export fruit. I further agree to not sure this information to parties whose purpose and objective are not aligned to making the export certification process more efficient and effective.

Signature __________________ Date _____________

Please complete and email back to us on [email protected] – ATTENTION FRUIT SOUTH AFRICA (TUR WEB ACCESS)