List merchant applications
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/merchants/applications \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/merchants/applications"
payload = {}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://sandbox-platform.jupico.com/v1/query/merchants/applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/merchants/applications';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": [
{
"smApplicationId": "<string>",
"applicantId": "<string>",
"spProductId": "<string>",
"status": "<string>",
"subMerchants": [
{
"status": "<string>",
"identity": {
"business": {
"legalName": "<string>"
}
},
"subMerchantId": "<string>"
}
]
}
],
"count": 123
}Query
List merchant applications
Returns provisioning applications with their status, applicant information, and associated submerchants. Use this to track onboarding progress.
POST
https://sandbox-platform.jupico.com
/
v1
/
query
/
merchants
/
applications
List merchant applications
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/merchants/applications \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/merchants/applications"
payload = {}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://sandbox-platform.jupico.com/v1/query/merchants/applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/merchants/applications';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": [
{
"smApplicationId": "<string>",
"applicantId": "<string>",
"spProductId": "<string>",
"status": "<string>",
"subMerchants": [
{
"status": "<string>",
"identity": {
"business": {
"legalName": "<string>"
}
},
"subMerchantId": "<string>"
}
]
}
],
"count": 123
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
The body is of type object.
Response
200 - application/json
Retrieve provisioning applications
Whether the request was processed successfully. Declines return HTTP 200 with success: false.
Human-readable result message.
Machine-readable result code. See the Error Codes reference.
The response payload.
Show child attributes
Show child attributes
Number of records.
Last modified on August 31, 2026
Was this page helpful?

