Data Methods
The data methods allow you to determine which parameters are available to attach in the body of your create merchant method requests. None of the data methods require parameters themselves to call.
Returns available countries including name, ISO-2 and ISO-3 codes, ISO numbers, and id strings in the Splitit system.
get
https://onboarding-v2.sandbox.splitit.com
/api/data/get-countries
Returns available currencies including ISO alphabetic and numeric codes, along with names and symbols in the Splitit system.
get
https://onboarding-v2.sandbox.splitit.com
/api/data/get-currencies
Returns a list of available payment processors including their ids and names in the Splitit system, along with their required credentials.
get
https://onboarding-v2.sandbox.splitit.com
/api/data/get-processors
Returns a list of available verticals in which merchants can be categorized, including display name (
verticalDisplayName
, i.e. “Hardware/Home Improvement”), name in the Splitit system for programmatic purposes (verticalSplititName
, i.e. “HardwareHomeImprovement”), and subcategories.get
https://onboarding-v2.sandbox.splitit.com
/api/data/get-verticals
{
"verticalDisplayName": "Electronics ",
"verticalSplititName": "Electronics",
"subCategories": [
"Home Small Appliances",
"Cameras / Photography",
"Hardware / Software",
"Computers / Printers",
"Entertainment Systems",
"Speciality Electronics / Equipment",
"Consumers Electronics / Audio",
"Large Appliances"
]
}
Returns a list of merchant statuses for reference.
get
https://onboarding-v2.sandbox.splitit.com
/api/data/status-legend
[
{
"key": 0,
"name": "None"
},
{
"key": 1,
"name": "PendingApproval"
},
{
"key": 2,
"name": "Approved"
},
{
"key": 3,
"name": "SalesForce_CreateMerchant"
},
{
"key": 4,
"name": "SalesForce_MerchantCreated_Succeeded"
},
{
"key": 5,
"name": "SalesForce_MerchantCreated_Failed"
},
{
"key": 6,
"name": "Splitit_MerchantCreated_Succeeded"
},
{
"key": 7,
"name": "Splitit_MerchantCreated_Failed"
}
]
Last modified 4mo ago