Re: VEPSS Test Data in sandbox

Solved! Go to solution
budhaiv
Regular Visitor

VEPSS Test Data in sandbox

Hi,

 

How can I find out what test data is available for the VEPSS api? It doesn't show anything for it under the Test data section in my project.

 

Thanks

 

 

2 REPLIES 2
API_Managers
Visa Developer Support Specialist

Re: VEPSS Test Data in sandbox

Hey @budhaiv,

 

I created a VDP VEPSS project app and took a look at the dashboard's sandbox menu on the left side. I don't see any Test Data available for use at this time. So I went ahead and I started sandbox testing using the VDP Playground application (this application is downloadable in the same left hand side menu under "Assets"). For test data, I navigated to the VEPSS API Reference page here - https://developer.visa.com/capabilities/visa-europe-payment-stop-service/reference

 

I used the Code Explorer //Body (the blackish greyis rectangular box on the right side of page) and I received a successful 200 OK Response for VEPSS API Stop Instruction Create API. Below you will see my VDP Playground screenshot of my sandbox test for VEPSS API Stop Instruction Create API, Stop Instruction Retrieve API. I've also included the successful Request, Response and Response Header.

 

Note: If you're not behind a firewall, then you do not have to configure the Proxy (Host and Port). You do not have to enable this feature if you're not behind a firewall.

 

20191001 VEPSS Playground Stop Instruction Create 200 OK.png

 

VEPSS API Stop Instruction Create API Request:

{
"stopDuration": 12,
"merchantIdentifiers": {
"merchantNames": ["Merchant1"],
"cardAcceptorIDs": ["ABCD100"]
},
"PAN": 4333340901000026
}


VEPSS API Stop Instruction Create API Response:

{"stopInstructions": [
{
"merchantIdentifier": {"merchantName": "Merchant1"},
"stopID": "60000"
},
{
"merchantIdentifier": {"cardAcceptorID": "ABCD100"},
"stopID": "60001"
}
]}


VEPSS API Stop Instruction Create API Response Header:

Status Code: 200 OK
Server : nginx
Content-Type : application/json;charset=UTF-8
Content-Length : 943
X-SERVED-BY : l55c012
X-CORRELATION-ID : 1569947631_458_841248619_l55c012_VDP_WS
X-APP-STATUS : 200
X-APP-STATUS : 200
Cache-Control : no-cache, no-store, must-revalidate
Pragma : no-cache
Expires : 0 ,Thu, 01 Jan 1970 00:00:00 GMT ,-1
X-Frame-Options : SAMEORIGIN
X-XSS-Protection : 1; mode=block
X-Content-Type-Options : nosniff
Strict-Transport-Security : max-age=2592000;includeSubdomains
Content-Language : en-US
Date : Tue, 01 Oct 2019 16:33:51 GMT
Connection : keep-alive

 

20191001 VEPSS Playground Stop Instruction Retrieve 200 OK.png

 

VEPSS API Stop Instruction Retrieve API Request:

{"PAN": 4333340901000026}


VEPSS API Stop Instruction Retrieve API Response:

{"stopInstructions": [
{
"stopInstructionEndDate": "2018-12-01",
"merchantIdentifier": {"merchantName": "Merchant 1"},
"apiCreated": true,
"stopId": "100000"
},
{
"stopInstructionEndDate": "2019-01-02",
"merchantIdentifier": {"cardAcceptorID": "CAID111111"},
"apiCreated": false,
"stopId": "200"
}
]}


VEPSS API Stop Instruction Retrieve API Response Header:

Status Code: 200 OK
Server : nginx
Content-Type : application/json;charset=UTF-8
Content-Length : 1204
X-SERVED-BY : l55c014
X-CORRELATION-ID : 1569948322_838_4993009_l55c014_VDP_WS
X-APP-STATUS : 200
X-APP-STATUS : 200
Cache-Control : no-cache, no-store, must-revalidate
Pragma : no-cache
Expires : 0 ,Thu, 01 Jan 1970 00:00:00 GMT ,-1
X-Frame-Options : SAMEORIGIN
X-XSS-Protection : 1; mode=block
X-Content-Type-Options : nosniff
Strict-Transport-Security : max-age=2592000;includeSubdomains
Content-Language : en-US
Date : Tue, 01 Oct 2019 16:45:23 GMT
Connection : keep-alive

 

20191001 VEPSS Playground Stop Instruction Cancel 200 OK.png

 

VEPSS API Stop Instruction Cancel API Request:

{"stopIDs": [
1000,
2000
]}


VEPSS API Stop Instruction Cancel API Response:

{"cancelledStopInstructionResult": [
{
"result": "0",
"stopID": "1000"
},
{
"result": "0",
"stopID": "2000"
}
]}


VEPSS API Stop Instruction Cancel API Response Header:

Status Code: 200 OK
Server : nginx
Content-Type : application/json;charset=UTF-8
Content-Length : 793
X-SERVED-BY : l55c015
X-CORRELATION-ID : 1569948539_472_417829569_l55c015_VDP_WS
X-APP-STATUS : 200
X-APP-STATUS : 200
Cache-Control : no-cache, no-store, must-revalidate
Pragma : no-cache
Expires : 0 ,Thu, 01 Jan 1970 00:00:00 GMT ,-1
X-Frame-Options : SAMEORIGIN
X-XSS-Protection : 1; mode=block
X-Content-Type-Options : nosniff
Strict-Transport-Security : max-age=2592000;includeSubdomains
Content-Language : en-US
Date : Tue, 01 Oct 2019 16:48:59 GMT
Connection : keep-alive

 

 

Hope that helps and have a nice day!

 




Thanks,

Tee



Was your question answered? Don't forget to click on "Accept as Solution" to help other devs find the answer to the same question.

budhaiv
Regular Visitor

Re: VEPSS Test Data in sandbox

Thanks, for now I will use the request as stated.