Skip to main content
POST
/
v1
/
intent
/
topics
/
lists
/
{id}
/
instantiate
Create an audience from a saved topic list
curl --request POST \
  --url https://api.aws53.cloud/v1/intent/topics/lists/{id}/instantiate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "status": "draft",
  "filters": {},
  "minScore": 49,
  "maxScore": 74,
  "minTopicOverlap": 125
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "status": "draft",
    "config": {
      "topicIds": [
        123
      ],
      "minScore": 49,
      "maxScore": 99,
      "minTopicOverlap": 1,
      "filters": {},
      "sourceUrl": "<string>"
    },
    "accessType": "paid",
    "dailyRefreshEnabled": true,
    "audienceSize": 123,
    "createdBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lastRefreshedAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "pausedAt": "2023-11-07T05:31:56Z"
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "request_id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.leadpipe.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Dashboard access token. Send as Authorization: Bearer .

Path Parameters

id
string<uuid>
required

Body

application/json
name
string
Required string length: 1 - 160
status
enum<string>
default:draft
Available options:
draft,
active
filters
object
minScore
integer | null
Required range: 0 <= x <= 99
maxScore
integer
Required range: 50 <= x <= 99
minTopicOverlap
integer
Required range: 1 <= x <= 250

Response

Audience created from topic list

data
object
required
meta
object
required