Skip to main content
POST
/
sourcing
/
ingest
Ingest candidate profiles
curl --request POST \
  --url https://api-service.fribl.co/api/v1/sourcing/ingest \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "session_id": "<string>",
  "selected_ids": [
    "<string>"
  ]
}
'
{
  "task_ids": [
    "<string>"
  ],
  "status": "<string>",
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

API key in UUID format. Include this header with every authenticated request.

Body

application/json

Request body for ingesting candidate profiles from a sourcing search.

session_id
string
required

Session ID from the sourcing search containing the profiles to ingest.

selected_ids
string[]
required

List of candidate profile IDs to ingest. Maximum 100 per request.

Maximum array length: 100

Response

Ingestion request accepted.

task_ids
string[]
required

Identifiers for the ingestion tasks created.

status
string
required

Status of the ingestion request.

message
string
required

Human-readable status message.