Skip to main content
POST
/
lists
/
talent
Create a new talent list
curl --request POST \
  --url https://app.tryspecter.com/api/v1/lists/talent \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "name": "My list",
  "talent_signal_id": [
    "8f47c8a1-b6d2-4c3e-9f5a-e2d4f0b7c932"
  ]
}'
"a1d2434c-e089-480a-8a27-9909d2f558b4"

Authorizations

X-API-Key
string
header
required

Body

application/json
name
string
required

Name of the list to create

Example:

"My list"

talent_signal_id
string[]

ID of talent signal being added

Response

The ID of the list that was created

ID of the list

Example:

"a1d2434c-e089-480a-8a27-9909d2f558b4"

I