> For the complete documentation index, see [llms.txt](https://legacy-docs.usesmileid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://legacy-docs.usesmileid.com/further-reading/kyc-receipts.md).

# KYC receipts

## What are KYC Receipts?

We offer our partners the ability to prove they ran KYC with Smile ID through a summary of the actions we took and the results we received when verifying the identity of a partner’s user. This is useful for our partners in the event of an audit or an internal reconciliation exercise.

Remember that Smile ID is a data processor of its partners’ users, so the KYC receipts display the actions it took for the purposes of KYC, but have no personally identifiable information (PII) displayed.

### **Products they are available for**

KYC Receipts are available for [Biometric KYC](/products/for-individuals-kyc/biometric-kyc.md) and [Document Verification](/products/for-individuals-kyc/document-verification.md), as these entail KYC checks, rather than a simple verification of user details.

## **How to get KYC Receipts**

### Individually

You can access individual KYC receipts through the partner portal by following the steps below:

1. Go to Job List
2. Click on any Biometric KYC or Document Verification job
3. Click the Print PDF button
4. Save or print the PDF

### Through the Callback

You can also grab the PDF automatically through the callback. All Biometric KYC and Document Verification callbacks contain a link to the PDF, so you can automatically capture and store the PDF for every job run.

{% hint style="info" %}
Your Smile ID portal user credentials is required to access the link
{% endhint %}

#### KYC Receipt key in Callback

```json
{
  "KYCReceipt": "https://portal.smileidentity.com/api/v3/9999/job_result_summary/0000000001/generate_pdf",
  "signature": "MhgX...",
  "timestamp": "2022-05-23T10:41:27.714Z",
  ...
}
```

### By calling `job_status`

Finally, you can retrieve the receipt for historical jobs by calling our job\_status API. This allows you to access the receipts retroactively in bulk.

#### KYC Receipt key in `job_status` Response

```json
{
   "code": "2302",
   "job_complete": true,
   "job_success": true,
   "kyc_receipt": "https://portal.smileidentity.com/api/v3/9999/job_result_summary/0000000001/generate_pdf",
   "signature": "HmLx...",
   "timestamp": "2022-05-23T10:47:51.533Z",
   ...
}
```

{% hint style="info" %}
KYC receipt is only available when jobs are completed. This means Print PDF button will not be visible in the portal for jobs that are still in process and the KYCReceipt key will not show up in the provisional callback.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://legacy-docs.usesmileid.com/further-reading/kyc-receipts.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
