Skip to main content
POST
/
api
/
Segment
/
Search
Find Segments
curl --request POST \
  --url https://api.virtuoussoftware.com/api/Segment/Search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search": "<string>"
}
'
{
  "list": [
    {
      "id": "<integer>",
      "name": "<string>",
      "description": "<string>",
      "code": "<string>",
      "communicationId": "<integer>",
      "communicationName": "<string>",
      "campaignId": "<integer>",
      "campaignName": "<string>",
      "segmentOrganizerId": "<integer>"
    },
    {
      "id": "<integer>",
      "name": "<string>",
      "description": "<string>",
      "code": "<string>",
      "communicationId": "<integer>",
      "communicationName": "<string>",
      "campaignId": "<integer>",
      "campaignName": "<string>",
      "segmentOrganizerId": "<integer>"
    }
  ],
  "total": "<integer>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

skip
string

How many items to skip.

take
string

How many items to take.

Body

application/json

Response

OK

list
object[]
total
string
Last modified on June 5, 2026