> ## 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.

# Device Entity

> Know about device entity parameters and their description.

<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 Device entity has the following parameters.

<ResponseExample>
  ```json Entity theme={null}
  {
    "entity":"device",
    "mobile":"999999999",
    "uuid":"<device_id>",
    "app":"test.merchant.upi.com",
    "ssid":"123456789",
    "manufacturer":"samsung",
    "model":"Galaxy S23",
    "os":"android",
    "os_version":"Dev12345",
    "ip":"ip of the device",
    "geocode":"geocode of the device",
    "status":"mobile_verification_pending"
  }
  ```
</ResponseExample>

<ResponseField name="entity" type="string">
  Indicates the type of entity. Here, it is `device`.
</ResponseField>

<ResponseField name="mobile" type="string">
  The mobile number of the customer.
</ResponseField>

<ResponseField name="uuid" type="string">
  A unique identifier for the device. For example, `advertising_id` or `android_id`.
</ResponseField>

<ResponseField name="app" type="string">
  The package name for the app.
</ResponseField>

<ResponseField name="ssid" type="string">
  Identifier of the SIM used to send the SMS.
</ResponseField>

<ResponseField name="manufacturer" type="string">
  Manufacturer of the device.
</ResponseField>

<ResponseField name="model" type="string">
  The device model.
</ResponseField>

<ResponseField name="os" type="string">
  The operating system running on the device.
</ResponseField>

<ResponseField name="os_version" type="string">
  Version of the operating system on the device.
</ResponseField>

<ResponseField name="ip" type="string">
  The IP address of the device.
</ResponseField>

<ResponseField name="geocode" type="string">
  The geocode of the device.
</ResponseField>

<ResponseField name="status" type="string">
  The device binding status.
</ResponseField>
