GET
/
v1
/
api
/
contacts
/
{contact}
/
capabilities
Check contact capabilities
curl --request GET \
  --url https://backend.blooio.com/v1/api/contacts/{contact}/capabilities \
  --header 'Authorization: Bearer <token>'
{
  "contact": "+1234567890",
  "type": "phone",
  "capabilities": {
    "imessage": true,
    "sms": true
  },
  "lastChecked": "2024-01-01T00:00:00.000Z"
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header as Bearer YOUR_API_KEY.

Path Parameters

contact
string
required

Phone number in E.164 format (e.g., +1234567890) or email address to check capabilities for.

Response

Contact capabilities information.

contact
string

The contact identifier (phone number or email).

Example:

"+1234567890"

type
enum<string>

Type of contact identifier.

Available options:
phone,
email
Example:

"phone"

capabilities
object

Messaging capabilities for this contact.

lastChecked
string<date-time>

ISO 8601 timestamp of when capabilities were last checked.

Example:

"2024-01-01T00:00:00.000Z"