Numbers

The numbers feature in CallScaler empowers users to purchase and integrate phone numbers into their call flows for outbound communications. These numbers act as dedicated lines, enhancing flexibility and extending the reach of user interactions. By seamlessly integrating with call flows, users can efficiently manage outbound calls, optimizing their communication strategies to suit their specific business requirements.

The numbers model

The numbers feature in CallScaler enables users to purchase and integrate dedicated phone numbers into their call flows for outbound communication. These numbers serve as personalized lines, enhancing flexibility and expanding the reach of user interactions. By seamlessly integrating with call flows, users can efficiently manage outbound calls, optimizing communication strategies to meet specific business needs and ensuring effective communication channels.

Properties

  • Name
    uuid
    Type
    string
    Description

    Unique identifier for the number.

  • Name
    number_type
    Type
    string
    Description

    The type of the number.

  • Name
    number_status
    Type
    boolean
    Description

    The number is active or not.

  • Name
    number_friendly_name
    Type
    string
    Description

    The name of CallScaler number.

  • Name
    number
    Type
    string
    Description

    The number of the CallScaler.

  • Name
    number_created_at
    Type
    timestamp
    Description

    Timestamp of when the message was created.

  • Name
    number_updated_at
    Type
    timestamp
    Description

    Timestamp of when the message was updated.


GET/v2/numbers

List all numbers

This API endpoint facilitates retrieving a paginated list of your calls. By default, the endpoint displays up to twenty five calls per page, allowing you to efficiently manage and retrieve call data as needed.

Optional attributes

  • Name
    limit
    Type
    integer
    Description

    Limit the number returned.

Request

GET
/v2/numbers
curl --location 'https://v2.callscaler.com/api/all/numbers'
--header 'Authorization: Bearer {bearer_token}'

Response

{
   "data": [
      {
         "uuid": 1,
         "number": "(123) 456-7890",
         "number_friendly_name": "Testing",
         "number_type": "local",
         "number_status": "active",
         "number_created_at": "2023-02-21 11:12:29",
         "number_updated_at": "2024-07-31 23:59:10"
      },
      {
          "uuid": 2,
          "number": "(123) 456-7890",
          "number_friendly_name": "Testing",
          "number_type": "local",
          "number_status": "active",
          "number_created_at": "2023-02-21 15:42:16",
          "number_updated_at": "2024-07-26 11:52:19"
      },
    ]
}

Was this page helpful?