Definition: PATCH /v1/preapprovals/{id}
Where:
- {id} – GlobalPay Preapproval ID
You can change the attributes of an already created preapproval by applying a PATCH.
Checkout the below example to change a preapproval for MercadoPago (46):
Request:
PATCH https://paytest.smart2pay.com/v1/preapprovals/4217
Authorization: Basic MzAyMDE6aEo1Um9iWXg5cjdGZk53Q3ZIWTlMWEhxcXIrRkV6cmM3YUp2UVFrNEdhejFtZzdSeXk=
{
"Preapproval": {
"MerchantPreapprovalID": "s2ptest_g107",
"Description": "1 year subscription update1",
"ReturnURL": "http://demo.smart2pay.com/redirect.php",
"MethodID": 46,
"Customer": {
"FirstName": "John",
"LastName": "Doe",
"Email": "test_user_83022133@testuser.com",
"Phone": "0765260000"
},
"BillingAddress": {
"Street": "Tonelero",
"StreetNumber": "1",
"ZipCode": "23900-000",
"City": "Rio de Janeiro",
"Country": "BR"
}
}
}
Response:
HTTP/1.1 201 Created
Content-Type: application/json; charset=utf-8
{
"Preapproval": {
"ID": 4217,
"Created": "20170804065155",
"MethodID": 46,
"SiteID": 30201,
"MerchantPreapprovalID": "s2ptest_g107",
"RecurringPeriod": 0,
"PreapprovedMaximumAmount": null,
"Currency": null,
"ReturnURL": "http://demo.smart2pay.com/redirect.php",
"Description": "1 year subscription update1",
"Customer": {
"ID": 3627,
"MerchantCustomerID": null,
"Email": "test_user_83022133@testuser.com",
"FirstName": "John",
"LastName": "Doe",
"Gender": null,
"SocialSecurityNumber": null,
"Phone": "0765260000",
"Company": null,
"DateOfBirth": null
},
"BillingAddress": {
"ID": 1257,
"City": "Rio de Janeiro",
"ZipCode": "23900-000",
"State": null,
"Street": "Tonelero",
"StreetNumber": "1",
"HouseNumber": null,
"HouseExtension": null,
"Country": "BR"
},
"Status": {
"ID": 2,
"Info": "Open",
"Reasons": null
},
"RedirectURL": "https://europaytest.smart2pay.com/MercadoPago2/Landing/PreapprovalLanding.aspx?ID=628&Hash=47CEEF7559CDD192E188D91F0C7B7978",
"MethodOptionID": 0,
"PreapprovedFrequency": null,
"MandateReference": null
}
}