Skip to main content

Fields

Gateway prefix: ${API_BASE}/metadata/fields/...

DTO fields (FieldDto)

  • id string (returned)
  • entityId string, ID of the owning entity
  • name string, field name
  • type string, field type (for example STRING, INT, DECIMAL, TIMESTAMP)
  • nullable boolean, whether nullable
  • description string, description

Paginated query fields by entity ID

  • GET /fields?entityId=...&page=...&pageSize=...

Example:

curl "${API_BASE}/metadata/fields?entityId=en-5001&page=0&pageSize=20"

Get by field ID

  • GET /fields/{id}

Example:

curl -X GET "${API_BASE}/metadata/fields/fd-9001"