AurionAI Docs

Validate Custom Attrs

POST
/api/v2/custom-fields/validate

Authorization

AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v2/custom-fields/validate" \  -H "Content-Type: application/json" \  -d '{    "entity_type": "string"  }'
{
  "errors": [
    "string"
  ],
  "valid": true
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}