accountIdentificationTypes
Overview
This query gets a list of all valid identification types for each country.
Special Considerations
None.
Inputs
None.
Returns
Promise<AccountIdentificationResult>
A promise containing the following data (for each country):
AccountIdentificationResult: {
data: json
}
Where the json asks for each country's accepted verification types for both corporate and private entities (i.e. for the US, accepts Employer Identification Number for business accounts, and either SSN, Passport, Driver's License, or Personal ID Number for private accounts).
Where the json asks for each country's accepted verification types for both corporate and private entities (i.e. for the US, accepts Employer Identification Number for business accounts, and either SSN, Passport, Driver's License, or Personal ID Number for private accounts).
Example
Running this query:
query {
accountIdentificationTypes {
data
}
}
Gives us:
{
"data": {
"accountIdentificationTypes": {
"data": {
"US": {
"corporate": {
"0": "EmployerIdentificationNumber_EIN"
},
"private": {
"0": "SocialSecurityNumber_SSN",
"1": "Passport",
"2": "DriversLicense",
"3": "PersonalIdentificationNumber"
}
},
"AU": {
"corporate": {
"0": "AustralianBusinessNumber_ABN"
},
"private": {
"0": "TaxFileNumber_TFN",
"1": "Passport",
"2": "DriversLicense",
"3": "PersonalIdentificationNumber"
}
},
"CA": {
"corporate": {
"0": "EmployerIdentificationNumber_EIN"
},
"private": {
"0": "SocialInsuranceNumber_SIN",
"1": "Passport",
"2": "DriversLicense",
"3": "PersonalIdentificationNumber"
}
},
"GB": {
"corporate": {
"0": "Value_AddedTax_VAT"
},
"private": {
"0": "NationalIdentificationNumber",
"1": "Passport",
"2": "DriversLicense",
"3": "PersonalIdentificationNumber"
}
}
}
}
}
}
Common Errors
N/A