Creating a Customer

Guide to creating a customer in Inscribe

Customer objects are folders which can be used to store documents. Customers objects should be created for each entity to be evaluated.

📘

Prerequisite(s)

  • Retrieve your API key as detailed here .

Creating a Customer

A customer object can be created as follows:

import requests  
URL = "<https://api.inscribe.ai/api/v2>"  
API_KEY = "Inscribe ..."  
headers = {  
    "Authorization": API_KEY  
}  

payload = {  
    "name": "Frank Abagnale",  
}

response = requests.request(  
    "POST",  
    f"{URL}/customers",  
    json=payload,  
    headers=headers  
)  
customer = response.json()

More information about creating a customer can be find in the API Reference Guide.

Creating Customer Verifications

Inscribe has a verification feature to check the expected attributes of customers. More information about customer verifications can be found in our Use Case Guides.

Next Steps

Once a customer has been created, the following will likely be required: