curl --request POST \
--url 'https://api.unify.ai/v0/logs/fields/types?project=eval-project' \
--header "Authorization: Bearer $UNIFY_KEY"
--header 'Content-Type: application/json' \
--data '{}'
{
"info": "Field typing updated successfully!"
}
Sets the typing for specified fields in the project.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Name of the project to get field types for.
Body
Dict of field names and booleans as to whether the field should be typed.
curl --request POST \
--url 'https://api.unify.ai/v0/logs/fields/types?project=eval-project' \
--header "Authorization: Bearer $UNIFY_KEY"
--header 'Content-Type: application/json' \
--data '{}'
{
"info": "Field typing updated successfully!"
}