listContacts
Retrieve a filtered list of contacts from Omnisend, including email, phone, and subscription status, for precise audience management and segmentation.
Instructions
Retrieve a list of contacts from Omnisend. Each contact can be identified by multiple identifiers (email, phone) with corresponding channels.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of contacts to return | |
offset | No | Skip first N results | |
status | No | Filter contacts by subscription status |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of contacts to return",
"type": "number"
},
"offset": {
"description": "Skip first N results",
"type": "number"
},
"status": {
"description": "Filter contacts by subscription status",
"enum": [
"subscribed",
"unsubscribed",
"nonSubscribed"
],
"type": "string"
}
},
"type": "object"
}