Blooio API Reference
Numbers & Contact Card

List phone numbers

List all phone numbers bound to this API key with their availability status. Use the returned phone numbers as the :number path parameter for other /me/numbers/ endpoints.

GET
/me/numbers

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Response Body

application/json

application/json

curl -X GET "https://backend.blooio.com/v2/api/me/numbers"
{
  "numbers": [
    {
      "phone_number": "+15551234567",
      "is_active": true,
      "last_active": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "error": "string",
  "status": 0
}