Identification-RemoteCompany-v2: Difference between revisions
Jump to navigation
Jump to search
Line 76: | Line 76: | ||
"DocumentImages": [ | "DocumentImages": [ | ||
{ | { | ||
"Data": "/9j/4RIuRXhpZgAATU0AKgAAAAgABwESAAMAAAABAAEAAAEaAAUAAAABAAAAYgE...", | "Data": "/9j/4RIuRXhpZgAATU0AKgAAAAgABwESAAMAAAABAAEAAAEaAAUAAAABAAAAYgE...", /* example truncated */ | ||
"MimeType": "image/jpeg" | "MimeType": "image/jpeg" | ||
} | } |
Revision as of 13:27, 21 June 2017
Barion API: remote KYC identification process for organizations
POST | /v2/Identification/Remote |
---|
The /identification/remote
API endpoint is used to complete a remote identification process for an organization previously registered in the Barion system.
Prerequisites before use:
v2 This API endpoint is available in API v2 only.
partners This API endpoint is available for trusted Barion partners only.
Input properties
Property name | Property type | Limitations and constraints | Description |
---|---|---|---|
PartnerKey | Guid |
|
The secret API key of the trusted partner, generated by Barion. |
ClientEmail | string |
|
The e-mail address of the client that is being identified |
ClientPassword | string |
|
The Barion password of the client that is being identified |
IdentifierAgent | IdentifierAgent |
|
Information about the agent who is initiating the identification process |
Representatives | RemoteRepresentative[] |
|
List of representative persons that are connected to the identification process |
Output properties
Property name | Property type | Description |
---|---|---|
IsSuccessful | bool | Indicates wether the identification process was successfully completed or not |
Example
Request
{
"PartnerKey": "{{hellopay_partner_key}}",
"ClientEmail": "{{shoplogin}}",
"ClientPassword": "{{demopass}}",
"IdentifierAgent": {
"FirstName": "Adam",
"LastName": "Agent",
"UserName": "adam2017"
},
"Representatives": [
{
"FirstName": "John",
"LastName": "Smith",
"IsRealOwner": true,
"Documents": [
{
"DocumentType": 1,
"DocumentNumber": "IDCARD001",
"DocumentValidUntil": "2025-05-05T00:00:00",
"DocumentImages": [
{
"Data": "/9j/4RIuRXhpZgAATU0AKgAAAAgABwESAAMAAAABAAEAAAEaAAUAAAABAAAAYgE...", /* example truncated */
"MimeType": "image/jpeg"
}
]
}
]
}
]
}
Response
{
"IsSuccessful": true,
"Errors": []
}