Talkamie APIs
  1. verification
Talkamie APIs
  • https
    • alert
    • alerts
      • get alerts
    • auth
      • get user by token
      • sign up
      • sign in
      • sign out
    • availability
      • get custom availability
      • get weekly availability
      • set custom availability
      • set weekly availability
    • call
      • get call
    • calls
      • get call histories
    • chat
      • get chat
      • get messages
    • chats
      • get frequent chats
      • get unread chats
      • get chats
    • connect-request
    • connect-requests
      • get pending connection requests
      • get users you're in connection with
    • finance
      • subscriptions
      • web - tier subscription
      • web - cancel subscription
      • web - balance top-up
    • interests
      • get interests
    • otp
      • generate otp
      • verify otp
    • reviews
      • get your reviews
    • schedule
      • get a schedule
      • update a schedule
      • delete schedule
    • schedules
      • get all schedules
      • get past schedules
      • get upcoming schedules
    • signed-urls
      • files
    • user
      • update user
      • change password
      • get user
      • delete user
      • schedule a call
      • clear schedules
      • send connection request
      • cancel connection request
      • accept connection from user
      • reject connection request
      • send message request
      • cancel message request
      • accept message request
      • reject message request
      • get user reviews
      • review a user
      • update review
      • delete review
    • users
      • get users
    • verification
      • initiate background check
        POST
      • initiate face liveliness
        POST
  • wss
    • alert
    • auth
    • call
    • call-signal
    • chats
    • messaging
    • ping socket
  1. verification

initiate background check

Deprecated
Develop Env
https://test-api.talkamie.com/v1
Develop Env
https://test-api.talkamie.com/v1
POST
/verification/background
create a background check on a candidate or user, using Checkr service

Request

Header Params
Authorization
string 
required
Example:
Bearer user-access-token
Body Params application/json
firstName
string 
required
lastName
string 
required
middleName
string 
optional
zipCode
string 
optional
workLocations
array [object {3}] 
required
countryCode
string 
required
ISO2 country code, refers to the two-letter ISO 3166-1 alpha-2 code for the country.
stateCode
string 
required
the official abbreviation or code assigned to the state within a country
city
string 
required
Example
{
    "firstName": "string",
    "lastName": "string",
    "middleName": "string",
    "zipCode": "string",
    "workLocations": [
        {
            "countryCode": "string",
            "stateCode": "string",
            "city": "string"
        }
    ]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test-api.talkamie.com/v1/verification/background' \
--header 'Authorization: Bearer user-access-token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "firstName": "string",
    "lastName": "string",
    "middleName": "string",
    "zipCode": "string",
    "workLocations": [
        {
            "countryCode": "string",
            "stateCode": "string",
            "city": "string"
        }
    ]
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-07-25 02:21:20
Previous
get users
Next
initiate face liveliness
Built with