Skip to content

Documentation

Explore our guides and examples to integrate ClearDil

Try out

Create Customer
import requests
import json
url = "https://api.cleardil.com/v1/customers"
payload = json.dumps({
"type": "INDIVIDUAL",
"email": "jon@doe.com",
"first_name": "Jon",
"last_name": "Doe",
"dob": "1971-04-06",
})
headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer api_token'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)

Browse by Products


Need help ?Contact support
Question ?Contact sales