Skip to main content
POST
/
api
/
v2
/
interviews
/
{interview_id}
/
metadata
Set interview metadata
curl --request POST \
  --url https://api.heymilo.ai/api/v2/interviews/{interview_id}/metadata \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "metadata": {}
}'
{
  "data": {
    "object": "<string>",
    "metadata": {}
  },
  "meta": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.heymilo.ai/llms.txt

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

Authorizations

X-API-KEY
string
header
required

API key for authentication. Pass your key in the X-API-KEY header.

Headers

X-API-KEY
string
required

Path Parameters

interview_id
string
required

Body

application/json

Request body for setting metadata on a resource.

metadata
Metadata · object
required

Key-value pairs to set. Up to 50 keys, each key max 40 chars, each value max 500 chars. All values must be strings.

Example:
{
"external_id": "ats_12345",
"source": "workday"
}

Response

Successful Response

data
MetadataResponse · object
required

Response containing metadata for a resource.

meta
Meta · object

Optional metadata. Shape varies by endpoint.