Download OpenAPI description
Languages
Servers
Mock server

https://docs.bndry.net/_mock/apis/openapi/

Documents

Service for managing documents.

Operations

Form Definitions

Service for managing form definitions.

Operations

FormService

Operations

Workspaces

Service for managing workspaces and their associated forms and documents.

Operations

Automations

Service for managing and executing automations.

Operations

NotesService

Operations

Tenants

Service for managing tenants.

Operations

Entities

Operations

TruuthService

TruuthService provides an API for the BNDRY SPA to initiate a new verification session with Truuth

Operations

CreateVerificationSession

Request

CreateSession initiates a new verification session with identity owner details

Headers
Connect-Protocol-Versionnumber(Connect-Protocol-Version)required

Define the version of the Connect protocol

Value1
Value 1
Connect-Timeout-Msnumber(Connect-Timeout-Ms)

Define the timeout, in ms

Bodyapplication/jsonrequired
identityOwneridentity_owner (object) or identity_owner (object)(bndry.api.risk.truuth.v1alpha.IdentityOwner)
One of:

Details of the person being verified.

curl -i -X POST \
  https://docs.bndry.net/_mock/apis/openapi/bndry.api.risk.truuth.v1alpha.TruuthService/CreateVerificationSession \
  -H 'Connect-Protocol-Version: 1' \
  -H 'Connect-Timeout-Ms: 0' \
  -H 'Content-Type: application/json' \
  -d '{
    "identityOwner": {
      "email": "string"
    }
  }'

Responses

Success

Bodyapplication/json
tokenstring(token)

The access token required for calling SDK endpoints.

tenantstring(tenant)

Tenant alias with all letters in lower case.

apiUrlstring(api_url)

The base URL used for the verification submission process.

identityOwneridentity_owner (object) or identity_owner (object)(bndry.api.risk.truuth.v1alpha.IdentityOwner)
One of:

Details of the person being verified.

Response
application/json
{ "token": "string", "tenant": "string", "apiUrl": "string", "identityOwner": { "email": "string" } }