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 '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>"
}
]
}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 '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>"
}
]
}