Dry run to classify entries as valid or invalid without importing anything.
curl --request PATCH \
--url https://api.useinvent.com/orgs/{org_id}/broadcasts/{broadcast_id}/properties/entries/dry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entries": [
{
"values": {},
"user_id": "<string>",
"email": "<string>",
"phone": "<string>"
}
]
}
'{
"valid": [
{
"user_id": "<string>",
"email": "<string>",
"phone": "<string>"
}
],
"invalid": [
{
"user_id": "<string>",
"email": "<string>",
"phone": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.useinvent.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication using your API key
Schema for importing broadcast property entries
50000Show child attributes
Was this page helpful?
curl --request PATCH \
--url https://api.useinvent.com/orgs/{org_id}/broadcasts/{broadcast_id}/properties/entries/dry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entries": [
{
"values": {},
"user_id": "<string>",
"email": "<string>",
"phone": "<string>"
}
]
}
'{
"valid": [
{
"user_id": "<string>",
"email": "<string>",
"phone": "<string>"
}
],
"invalid": [
{
"user_id": "<string>",
"email": "<string>",
"phone": "<string>"
}
]
}