Retrieve a paginated list of all Do Not Contact entries for your team
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | 50 | Number of entries to return (1-1000) |
offset | integer | No | 0 | Number of entries to skip for pagination |
GET /v1/dnc?limit=50&offset=0GET /v1/dnc?limit=50&offset=50GET /v1/dnc?limit=50&offset=100resetTime timestampresetTime before retrying| Field | Type | Description |
|---|---|---|
data.entries | array | Array of DNC entry objects |
data.total | integer | Count of entries in current response (not total across all pages) |
data.limit | integer | The limit value used for this request |
data.offset | integer | The offset value used for this request |
total field returns the number of entries in the current response (same as entries.length), NOT the total count of all DNC entries across all pages. To get the full count, you need to paginate through all results.
| Field | Type | Description |
|---|---|---|
$id | string | Unique identifier for the DNC entry |
teamId | string | Team ID that owns this entry |
url | string | Normalized LinkedIn URL |
$createdAt | string | ISO 8601 timestamp when entry was created |
$updatedAt | string | ISO 8601 timestamp when entry was last updated |
error field in responseteamIdBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of entries to return (1-1000)
1 <= x <= 1000Number of entries to skip for pagination
x >= 0