Skip to main content
GET
/
audience
/
contacts
/
list
cURL
curl --request GET \\
  --url https://voip-middlware.superu.ai/audience/contacts/list?audience_id=aud_01HXR9V5S7W1S0Q4H4PDTGM43B&page=1&limit=10 \\
  --header 'superU-Api-Key: YOUR_SUPERU_API_KEY'
{
  "status": "success",
  "contact_list": [
    {
      "contact_id": "con_01HXR9N8QCYHTWNB5JX22P4QZA",
      "first_name": "Ava",
      "country_code": "+1",
      "phone_number": "5551234567"
    }
  ],
  "page": 1,
  "limit": 10
}

Authorizations

superU-Api-Key
string
header
required

Your SuperU API key.

Query Parameters

audience_id
string
required

Audience ID

Example:

"aud_01HXR9V5S7W1S0Q4H4PDTGM43B"

page
integer
default:1

Page number

Required range: x >= 1
Example:

1

limit
integer
default:10

Records per page

Required range: 1 <= x <= 100
Example:

10

Response

Audience contacts returned

Generic Response schema.

status
string

Status value.

Example:

"success"

message
string

Message value.

Example:

"Request completed successfully"

data
object

Data value.