Notion API Error: Request Body Fails Validation

Notion API returns validation errors when a new record with dropdown and number fields is added. Revised configuration sample:

const recordData = {
  header: [{ text: { content: 'Demo' } }],
  level: { id: 'key_001', kind: 'Option', option: { value: '3' } },
  contributor: { emails: ['[email protected]'] }
};

hey, u might need to set the number as numeric type, not strng. check your reusable schema formatting too. maybe your option is off make sure it matches notion doc guidelines.