Phone.com Connect OpenAPI
Beetexting and Phone.com App
  1. Contacts
  • 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
        GET
      • Find contact using Mobile number
        GET
      • Search a contact using Number
        GET
      • Create or Update Contact
        POST
      • Update contact using Mobile number
        PUT
      • Update Contact
        PUT
    • 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
  1. Contacts

Get All Contacts in an Org

GET
/contacts

Description :#

Contacts represent the data stored for the contacts that are available within your Phone.com account. This API helps get all contacts of an Organization.

URL :#

https://connect.beetexting.com/pdc-prod/contacts?page=1&size=10&sort=createdDateTime,ASC
(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

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

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/contacts?page=1&size=10&sort=createdDateTime,ASC' \
--header 'x-api-key: fh7g6scysr8V2f5nmVzU64nOzdBoZ7rt1wT1A74S' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "totalPages": 0,
    "totalElements": 0,
    "numberOfElements": 0,
    "pageable": {
        "pageNumber": 0,
        "pageSize": 0,
        "paged": true,
        "unpaged": true,
        "offset": 0,
        "sort": {
            "sorted": true,
            "unsorted": true,
            "empty": true
        }
    },
    "number": 0,
    "first": true,
    "last": true,
    "size": 0,
    "content": [
        {
            "id": "string",
            "firstName": "string",
            "lastName": "string",
            "name": "string",
            "mobileNumber": "936888363936",
            "notes": [
                {
                    "id": "string",
                    "createdAgentName": "string",
                    "message": "string",
                    "creationDate": 0,
                    "lastUpdatedDate": 0,
                    "noteAssociatedType": "CONTACT",
                    "contactId": "string",
                    "agentId": "string"
                }
            ],
            "tags": "[tag1, tag2, tag3..]",
            "email": "string",
            "blocked": false,
            "optOutStatus": false,
            "donotDisturb": false
        }
    ],
    "sort": {
        "sorted": true,
        "unsorted": true,
        "empty": true
    },
    "empty": true
}
Modified at 2025-10-27 17:55:41
Previous
Send MMS
Next
Find contact using Mobile number
Built with