# Phone Number

The `Phone Number` object is used in the Marketplace APIs to represent a phone number. This object contains two fields.

<table><thead><tr><th width="141">Field Name</th><th width="138">Data Type</th><th>Description</th></tr></thead><tbody><tr><td><code>prefix</code></td><td>string</td><td>Represents the country-specific prefix.</td></tr><tr><td><code>number</code></td><td>string</td><td>Represents the phone number.</td></tr></tbody></table>

### Example

{% code lineNumbers="true" %}

```json
{ 
  "prefix": "+34",
  "number": "660707172"
}
```

{% endcode %}
