# Create KYC Session

## POST /v0/customers/{customer\_id}/kycs

> Create a new KYC Session for a customer

```json
{"openapi":"3.0.0","info":{"title":"Customers API","version":"0"},"servers":[{"url":"https://api.alignlabs.dev","description":"Production server"},{"url":"https://api-sandbox.alignlabs.dev","description":"Sandbox server"}],"paths":{"/v0/customers/{customer_id}/kycs":{"post":{"summary":"Create a new KYC Session for a customer","parameters":[{"name":"customer_id","in":"path","description":"The unique identifier of the customer","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"Api-Key","in":"header","description":"Your secret API key, available in the developer dashboard. Include this header on every request to authenticate your application.","required":true,"schema":{"type":"string"}}],"responses":{"201":{"description":"Successful creation of KYC","content":{"application/json":{"schema":{"type":"object","properties":{"kycs":{"type":"object","properties":{"kyc_flow_link":{"type":"string"}}}}}}}}}}}}}
```
