Beetexting Connect OpenAPI
API Swagger Docs
Beetexting
  1. Sites API
  • Getting Started
  • OAuth 2.0 for Beetexting
  • Postman How-to for Beetexting OpenAPIs
  • Zapier How-to for Beetexting 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
API Swagger Docs
Beetexting
  1. Sites API

Get Sites

GET
/sites

Description :#

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

URL :#

https://connect.beetexting.com/prod/sites
(While sending the request please make sure to append https://connect.beeteting.com/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 Beetexting' and 'Postman How-to for beetexting section'

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/sites?page=0&size=20&sort=createDateTime' \
--header 'Authorization: Bearer <token>'
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 15:22:26
Previous
Create or Update Subscription
Built with