Activate an installment plan
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/installments/activate \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"subMerchantId": "<string>",
"installmentId": "fa206a06-6275-4119-bbe0-56dc294cb90f"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/installments/activate"
payload = {
"subMerchantId": "<string>",
"installmentId": "fa206a06-6275-4119-bbe0-56dc294cb90f"
}
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({
subMerchantId: '<string>',
installmentId: 'fa206a06-6275-4119-bbe0-56dc294cb90f'
})
};
fetch('https://sandbox-platform.jupico.com/v1/installments/activate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/installments/activate';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
subMerchantId: '<string>',
installmentId: 'fa206a06-6275-4119-bbe0-56dc294cb90f'
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));Installments
Activate an installment plan
Reactivates a previously deactivated installment plan, resuming scheduled payments.
POST
https://sandbox-platform.jupico.com
/
v1
/
installments
/
activate
Activate an installment plan
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/installments/activate \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"subMerchantId": "<string>",
"installmentId": "fa206a06-6275-4119-bbe0-56dc294cb90f"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/installments/activate"
payload = {
"subMerchantId": "<string>",
"installmentId": "fa206a06-6275-4119-bbe0-56dc294cb90f"
}
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({
subMerchantId: '<string>',
installmentId: 'fa206a06-6275-4119-bbe0-56dc294cb90f'
})
};
fetch('https://sandbox-platform.jupico.com/v1/installments/activate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/installments/activate';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
subMerchantId: '<string>',
installmentId: 'fa206a06-6275-4119-bbe0-56dc294cb90f'
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Response
Installment successfully activated.
Last modified on August 31, 2026
Was this page helpful?

