Skip to main content
POST
/
api
/
v2
/
crm
/
lists
/
{list_id}
/
creators
Add creators to a CRM list
curl --request POST \
  --url https://api.topyappers.com/api/v2/crm/lists/{list_id}/creators \
  --header 'Content-Type: application/json' \
  --header 'x-ty-api-key: <api-key>' \
  --data '
{
  "userIds": [
    "instagram_57971538386",
    "instagram_58848167468"
  ],
  "status": "TO_OUTREACH",
  "notes": "Imported from June search"
}
'
{
  "message": "OK",
  "response": {
    "data": [
      {
        "id": "<string>",
        "list_id": "<string>",
        "user_id": "<string>",
        "contact_email": "<string>",
        "handle": "<string>",
        "first_contact_date": "<string>",
        "last_contact_date": "<string>",
        "response_date": "<string>",
        "proposed_rate": 123,
        "agreed_rate": 123,
        "content_deliverables": "<string>",
        "notes": "<string>",
        "active": true,
        "date_created": "<string>",
        "date_updated": "<string>",
        "influencer": {}
      }
    ],
    "requested_count": 123,
    "processed_count": 123,
    "added_count": 123,
    "created_count": 123,
    "reactivated_count": 123,
    "skipped_duplicate_count": 123,
    "skipped_invalid_count": 123
  }
}

Authorizations

x-ty-api-key
string
header
required

Path Parameters

list_id
string
required

CRM list ID.

Body

application/json
userIds
(string | integer)[]
required
Required array length: 1 - 500 elements
status
enum<string>
Available options:
TO_OUTREACH,
OUTREACHED,
NEGOTIATING,
WORKING,
DONE,
CANCELLED
notes
string | null
contactEmail
string | null

Allowed only when userIds contains one creator.

instagramHandle
string | null

Allowed only when userIds contains one creator.

tiktokHandle
string | null

Allowed only when userIds contains one creator.

proposedRate
number | null

Allowed only when userIds contains one creator.

Required range: x >= 0

Response

Creators processed

message
string
Example:

"OK"

response
object