Phone.com Connect OpenAPI
Beetexting and Phone.com App
  1. Sites API
  • Getting Started
  • OAuth 2.0 for Phone.com
  • Postman How-to for Phone.com OpenAPIs
  • Zapier How-to for Phone.com OpenAPIs
  • FAQ
  • APIs
    • Message API
      • Send SMS
      • Send MMS
    • Contacts
      • Get All Contacts in an Org
      • Find contact using Mobile number
      • Search a contact using Number
      • Create or Update Contact
      • Update contact using Mobile number
      • Update Contact
    • Consent
      • Create Custom Consent
      • Update Custom Consent
      • Get Custom Consent Details Using ID
      • Get All Custom Consents
      • Change Custom Consent Status by Id
      • Add or Remove Custom Consent Type
    • Webhook Subscriptions API
      • Get All Subscriptions
      • Create or Update Subscription
    • Sites API
      • Get Sites
        GET
  1. Sites API

Get Sites

GET
/sites

Description :#

Sites represents the data of the site of an organization in Phone.com. This API helps Get all sites of agent.

URL :#

https://connect.beetexting.com/pdc-prod/sites
(While sending the request please make sure to append https://connect.beetexting.com/pdc-prod if the url in the cUrl command starts with /message ...)
**Note : To add the OAuth2.0 Auth Token please see the section 'OAuth2.0 For Phone.com' and 'Postman How-to for Phone.com section'

Request

Query Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/sites?page=0&size=20&sort=createDateTime'
Response Response Example
{
    "totalElements": 0,
    "totalPages": 0,
    "size": 0,
    "content": [
        {
            "id": "string",
            "name": "string",
            "address": "string"
        }
    ],
    "number": 0,
    "sort": [
        {
            "direction": "string",
            "nullHandling": "string",
            "ascending": true,
            "property": "string",
            "ignoreCase": true
        }
    ],
    "first": true,
    "last": true,
    "numberOfElements": 0,
    "pageable": {
        "offset": 0,
        "sort": [
            {
                "direction": "string",
                "nullHandling": "string",
                "ascending": true,
                "property": "string",
                "ignoreCase": true
            }
        ],
        "pageNumber": 0,
        "pageSize": 0,
        "paged": true,
        "unpaged": true
    },
    "empty": true
}
Modified at 2025-10-27 18:00:07
Previous
Create or Update Subscription
Built with