Links

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.

Get Countries

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
Sample Response
{
"id": "62b2f92d6f26d4dcf9eee177",
"name": "JAMAICA",
"isoA2": "JM",
"isoA3": "JAM",
"isoNumber": "388"
}

Get Currencies

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
Sample Response
{
"code": "USD",
"name": "US Dollar",
"symbol": "US$",
"isoNumber": "840"
}

Get Processors

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
Sample Response
{
"id": 6,
"name": "Adyen",
"processorAuthenticationParametersRequest": [
{
"key": "MerchantAccount"
},
{
"key": "UserName"
},
{
"key": "Password"
},
{
"key": "CompanyName"
},
{
"key": "RandomString"
}
]
}

Get Verticals

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
Sample Response
{
"verticalDisplayName": "Electronics ",
"verticalSplititName": "Electronics",
"subCategories": [
"Home Small Appliances",
"Cameras / Photography",
"Hardware / Software",
"Computers / Printers",
"Entertainment Systems",
"Speciality Electronics / Equipment",
"Consumers Electronics / Audio",
"Large Appliances"
]
}

Get Status Legend

Returns a list of merchant statuses for reference.
get
https://onboarding-v2.sandbox.splitit.com
/api/data/status-legend
Sample Response
[
{
"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