Download OpenAPI description
Languages
Servers
Mock server
https://docs.bndry.net/_mock/apis/openapi/
https://api.bndry.app/
- Mock server
https://docs.bndry.net/_mock/apis/openapi/bndry.api.risk.truuth.v1alpha.TruuthService/CreateVerificationSession
https://api.bndry.app/bndry.api.risk.truuth.v1alpha.TruuthService/CreateVerificationSession
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.bndry.net/_mock/apis/openapi/bndry.api.risk.truuth.v1alpha.TruuthService/CreateVerificationSession \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Connect-Protocol-Version: 1' \
-H 'Connect-Timeout-Ms: 0' \
-H 'Content-Type: application/json' \
-d '{
"identityOwner": {
"email": "john.smith@example.com"
}
}'
Response
application/json
{ "token": "tk_live_abc123xyz789", "tenant": "example-financial", "apiUrl": "https://api.truuth.com/v1", "identityOwner": { "email": "john.smith@example.com" } }
Bodyapplication/jsonrequired
Verification status
Enum"VERIFICATION_STATUS_UNSPECIFIED""VERIFICATION_STATUS_DONE""VERIFICATION_STATUS_IN_PROGRESS""VERIFICATION_STATUS_PROCESSING""VERIFICATION_STATUS_ERROR"
Identity owner details from verification
Verification results containing proofing outcomes
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/truuth/webhooks/callback
https://api.bndry.app/v1alpha/truuth/webhooks/callback
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.bndry.net/_mock/apis/openapi/v1alpha/truuth/webhooks/callback \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"verificationId": "string",
"externalRefId": "string",
"status": "VERIFICATION_STATUS_UNSPECIFIED",
"identityOwner": {
"givenName": "string",
"familyName": "string",
"middleName": "string",
"dateOfBirth": "string",
"email": "string",
"gender": "string",
"mobileNumber": "string"
},
"results": {
"proofingOutcomes": [
{
"status": "string",
"proofingType": {
"code": "string",
"name": "string"
},
"documents": [
{
"metadata": {
"property1": "string",
"property2": "string"
}
}
],
"userBehaviourChecks": [
{
"type": "string",
"name": "string",
"status": "string",
"score": 0.1
}
]
}
],
"otherCheckOutcomes": [
{
"type": "string",
"name": "string",
"status": "string"
}
],
"faceImage": "string",
"reports": [
{
"type": "string",
"url": "string",
"metadata": {
"property1": "string",
"property2": "string"
}
}
]
},
"createdAt": "1s"
}'
Response
application/json
{ "success": true, "message": "string" }