> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-881012b3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Terms and Conditions Entity

> Entity parameters and sample code for Terms and Conditions API.

<div style={{display:"flex",flexWrap:"wrap",alignItems:"center",gap:"0.35rem 0.9rem",border:"1px solid rgba(128,128,128,0.28)",borderRadius:"0.5rem",padding:"0.45rem 0.75rem",margin:"0 0 1.25rem",fontSize:"0.875rem"}}>
  <span style={{fontWeight:600}}>Available in</span>
  <span>🇮🇳 India</span>
</div>

The Terms and Conditions entity has the following parameters:

<ResponseExample>
  ```json Entity theme={null}
  {
    "entity": "tnc_map",
    "product_name": "payments",
    "id": "tnc_map_HjOVhIdpVDZ0FB",
    "tnc": {
      "terms": "https://razorpay.com/terms",
      "privacy": "https://razorpay.com/privacy",
      "agreement": "https://razorpay.com/agreement"
    },
    "last_published_at": 1640589653
  }
  ```
</ResponseExample>

<ResponseField name="entity" type="string">
  The name of the entity. Here it is `tnc_map`.
</ResponseField>

<ResponseField name="product_name" type="string">
  Determines what business unit the terms and conditions belong to.
</ResponseField>

<ResponseField name="id" type="string">
  Unique identifier of the terms and conditions belonging to a specific business unit.
</ResponseField>

<ResponseField name="tnc" type="object">
  The terms and conditions content.
</ResponseField>

<ResponseField name="terms" type="string">
  The terms and conditions webpage URL.
</ResponseField>

<ResponseField name="privacy" type="string">
  The privacy policy webpage URL.
</ResponseField>

<ResponseField name="agreement" type="string">
  The agreement webpage URL.
</ResponseField>

<ResponseField name="last_published_at" type="integer">
  The timestamp in Unix format, when the terms and conditions were created/last updated.
</ResponseField>
